我在網路上找的一個函數:
<code>function is_json($string) { json_decode($string); return (json_last_error() == JSON_ERROR_NONE); } $str = '{id:23,name:"test"}'; $str = "{'id':23,'name':'test'}"; 为什么在PHP7,均不是合法的json格式呢?? 有没有靠谱的方法??</code>
我在網路上找的一個函數:
<code>function is_json($string) { json_decode($string); return (json_last_error() == JSON_ERROR_NONE); } $str = '{id:23,name:"test"}'; $str = "{'id':23,'name':'test'}"; 为什么在PHP7,均不是合法的json格式呢?? 有没有靠谱的方法??</code>
JSON的格式,key與value都必須是雙引號…
return json_encode($json)!==false
PHP7 採用了更嚴格的JSON規則,單引號已經不再能夠用於引用和字段名。
<code>var arr = {id:23,name:'test'}; //键名不用引号,值用单引号,在JS中,这样写都合法 alert(JSON.stringify(arr)); //但合法的JSON字符串应该是stringify后的模样 {"id":23,"name":"test"}</code>