is_json()
函數本身不是 PHP 的內置函數。但是,你可以使用以下方法來檢測一個字符串是否是有效的 JSON 數組:
function is_json_array($string) {
json_decode($string);
return (json_last_error() == JSON_ERROR_NONE) && (json_decode($string, true) !== null);
}
$json_array = '[1, 2, 3]';
if (is_json_array($json_array)) {
echo "This is a valid JSON array.";
} else {
echo "This is not a valid JSON array.";
}
這個 is_json_array()
函數首先嘗試對輸入的字符串進行解碼。如果解碼成功且沒有錯誤,那么它將返回 true
,表示這是一個有效的 JSON 數組。如果解碼失敗或者解碼后的值為 null
,則返回 false
,表示這不是一個有效的 JSON 數組。