NULL
。如果
json
无法被解码, 或者编码数据深度超过了递归限制的话,将会返回NULL
Example: PHP json_encode()
<?php $str_json_array_decoded = json_decode($str_json_format); print "<br/><br/>Resultant decoded array from JSON array:<br/>"; print "<PRE>"; print_r($str_json_array_decoded); print "</PRE>"; $str_objJson_decoded = json_decode($obj_json_format); print "<br/><br/>Resultant decoded object data from JSON object:<br/>"; print "<PRE>"; print_r($str_objJson_decoded); print "</PRE>"; $str_jsonAry_decoded = json_decode($obj_json_format,true); print "<br/><br/>Resultant decoded array data from JSON object:<br/>"; print "<PRE>"; print_r($str_jsonAry_decoded); print "</PRE>";
注意:
- PHP 可以将任意数据类型转换为 JSON 格式,除了 resource data
- JSON 解码时,必须先去除掉字符串中的反斜杠 "\",不然会导致解析失败,可以使用
stripslashes
对字符串进行处理后,再使用 json_decode 解析
如果需要解码的 JSON 数据中包含有反斜杠 "\",应该使用如下代码进行解码:
$obj = \json_decode(stripslashes($json));
PS:这里再为大家推荐几款比较实用的json在线工具供大家参考使用:
在线JSON代码检验、检验、美化、格式化工具:
http://tools.jb51.net/code/json
JSON在线格式化工具:
http://tools.jb51.net/code/jsonformat
在线XML/JSON互相转换工具:
http://tools.jb51.net/code/xmljson
json代码在线格式化/美化/压缩/编辑/转换工具:
http://tools.jb51.net/code/jsoncodeformat
C语言风格/HTML/CSS/json代码格式化美化工具:
http://tools.jb51.net/code/ccode_html_css_json
更多关于PHP相关内容感兴趣的读者可查看本站专题:《PHP中json格式数据操作技巧汇总》、《PHP数学运算技巧总结》、《PHP基本语法入门教程》、《PHP数组(Array)操作技巧大全》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。