用于 intl 错误的异常类

(PHP 5 > 5.5.0, PHP 7, PHP 8, PECL intl > 3.0.0a1)

介绍

此类用于在 intl 函数内部发生错误时生成异常。 此类异常仅在 intl.use_exceptions 启用时才会生成。

类概要

class IntlException extends Exception {
/* 继承的属性 */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
/* 继承的方法 */
public Exception::__construct(string $message = "", int $code = 0, ?Throwable $previous = null)
final public Exception::getCode(): int
final public Exception::getFile(): string
final public Exception::getLine(): int
final public Exception::getTrace(): array
}
添加说明

用户贡献的说明

此页面没有用户贡献的说明。
To Top