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 数组。