有没有办法在不使用PHP的情况下检查变量是否为有效的JSON字符串json_last_error()?我没有PHP 5.3.3。
json_last_error()
$ob = json_decode($json); if($ob === null) { // $ob is null because the json cannot be decoded }