阅读量:0
is_json()
函数是 PHP 中的一个自定义函数,用于检查给定的字符串是否是有效的 JSON 格式。这个函数并不是 PHP 内置的函数,但你可以很容易地自己实现它。下面是一个简单的实现方法:
function is_json($string) { json_decode($string); return (json_last_error() == JSON_ERROR_NONE); }
这个函数首先尝试对输入的字符串进行解码。如果 json_decode()
函数成功解码,那么 json_last_error()
将返回 JSON_ERROR_NONE
,表示输入的字符串是有效的 JSON 格式。如果解码失败,json_last_error()
将返回一个错误码,表示输入的字符串不是有效的 JSON 格式。
下面是如何使用 is_json()
函数的示例:
$json_string = '{"key": "value"}'; if (is_json($json_string)) { echo "The string is valid JSON format."; } else { echo "The string is not valid JSON format."; }
在这个示例中,我们检查 $json_string
变量是否包含有效的 JSON 格式。如果 is_json()
函数返回 true
,我们输出 “The string is valid JSON format.”,否则输出 “The string is not valid JSON format.”。