PHP Conference Japan 2024

DateException 類別

(PHP 8 >= 8.3.0)

簡介

日期/時間例外的父類別,用於處理因使用者輸入或需要剖析的自由格式文字引數而產生的問題。

擴充功能會拋出以下子例外

類別概要

類別 DateException 繼承自 Exception {
/* 繼承的屬性 */
保護 字串 $message = "";
私有 字串 $string = "";
保護 整數 $code;
保護 字串 $file = "";
保護 整數 $line;
私有 陣列 $trace = [];
私有 ?Throwable $previous = null;
/* 繼承的方法 */
公開 Exception::__construct(字串 $message = "", 整數 $code = 0, ?Throwable $previous = null)
最終 公開 Exception::getMessage(): 字串
最終 公開 Exception::getCode(): 整數
最終 公開 Exception::getFile(): 字串
最終 公開 Exception::getLine(): 整數
最終 公開 Exception::getTrace(): 陣列
}
新增註解

使用者貢獻的註解

此頁面沒有使用者貢獻的註解。
To Top