is_json()
函數本身不是 PHP 的內置函數。但是,您可以使用 json_decode()
和 json_last_error()
函數來檢查一個字符串是否為有效的 JSON 格式,包括嵌套的 JSON。
以下是一個示例函數 is_json()
,用于檢查字符串是否為有效的 JSON:
function is_json($string) {
json_decode($string);
return (json_last_error() == JSON_ERROR_NONE);
}
使用此函數,您可以檢查嵌套的 JSON 字符串是否有效。例如:
$json = '{"key": {"nestedKey": "value"}}';
if (is_json($json)) {
echo "The string is valid JSON.";
} else {
echo "The string is not valid JSON.";
}
這將輸出 “The string is valid JSON.”,因為 $json
是一個有效的嵌套 JSON 字符串。