DateRangeError 类

(PHP 8 >= 8.3.0)

简介

在 32 位平台上,如果日期对象表示的日期超出 32 位有符号范围,则由 DateTime::getTimestamp()DateTimeImmutable::getTimestamp()date_timestamp_get() 抛出。

类概要

class DateRangeError extends DateError {
/* 继承的属性 */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
/* 继承的方法 */
public Error::__construct(string $message = "", int $code = 0, ?Throwable $previous = null)
final public Error::getMessage(): string
final public Error::getCode(): int
final public Error::getFile(): string
final public Error::getLine(): int
final public Error::getTrace(): array
private Error::__clone(): void
}
添加笔记

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top