DateMalformedStringException 类

(PHP 8 >= 8.3.0)

简介

当检测到无效的日期/时间字符串时抛出。

这可以作为 DateTimeImmutable::__construct()DateTimeImmutable::modify()DateTime::__construct()DateTime::modify() 的值。

类概要

class DateMalformedStringException 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