PHP Conference Japan 2024

JsonException 類別

(PHP 7 >= 7.3.0, PHP 8)

簡介

如果針對 json_encode()json_decode() 設定了 JSON_THROW_ON_ERROR 選項,則會拋出此例外。 code 包含錯誤類型,可能的值請參閱 json_last_error()

類別概要

類別 JsonException 繼承自 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