小编典典

如何在PHP中验证JSON?

json

有没有办法在不使用PHP的情况下检查变量是否为有效的JSON字符串json_last_error()?我没有PHP 5.3.3。


阅读 336

收藏
2020-07-27

共1个答案

小编典典

$ob = json_decode($json);
if($ob === null) {
 // $ob is null because the json cannot be decoded
}
2020-07-27