DateInvalidOperationException 类

(PHP 8 >= 8.3.0)

简介

当尝试执行不支持的操作时,由 DateTimeImmutable::sub()DateTime::sub() 抛出。

此类不支持操作的示例是使用表示相对时间规范(如 next weekday)的 DateInterval 对象,因为无法构建逻辑上的反向语句。

类概要

class DateInvalidOperationException extends DateException {
/* 继承的属性 */
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