php开发 - 关于json

前言

  • json_encode:将数组转化成json字符串
  • json_decode:将json字符串转化成数组
  • 在线json解析工具
  • JsonView - chrome扩展

关于json

  1. 为什么要使用json
    json字符串容易存储,尤其是要将一个数组存入数据库或缓存或记录日志的时候

  2. json_encode

$str = json_encode($arr);
  1. json_decode
    Dash中的函数格式如下
mixed json_decode ( string $json [, bool $assoc = false [, int $depth = 512 [, int $options = 0 ]]] )

注意第二个参数,当json_decode()的第二个参数不填的时候,json解析的到的结果是个object对象,只有当第二个参数是true的时候,json解析的结果才是list数组

$object = json_decode($str);
$array = json_decode($str,true);

如果是做API接口开发,经常和客户端联调的筒子们肯定就知道,object类型和list类型对于安卓来说相差甚远,直接关系到接口是否能够解析

关于json工具

  1. 在线json解析
    (1)Json Parser Online:http://json.parser.online.fr/
    优势:界面简洁美观,json解析框够大,适用于解析很长的json字符串
php开发 - 关于json_第1张图片

(2) Be Json

php开发 - 关于json_第2张图片

优势: json解析出错时会给出错误提示

  1. Chrome的json解析扩展 - JSONVIEW
    安装完成后调用接口直接在页面上显示json解析后的内容

下载链接:
https://chrome.google.com/webstore/detail/jsonview/chklaanhfefbnpoihckbnefhakgolnmc

效果图:


php开发 - 关于json_第3张图片

你可能感兴趣的:(php开发 - 关于json)