当前位置: 首页 > 后端技术 > PHP

4种格式的php输出jsonjson对象json数组json嵌套

时间:2023-03-29 21:13:49 PHP

第一种:JSONarray'Baidu','time'=>'2000','网站'=>'www.baidu.com'),array('标题'=>'阿里巴巴','时间'=>'1999','网站'=>'www.alibaba.com'),array('title'=>'腾讯','time'=>'1998','website'=>'www.qq.com'));//转换为JSONechojson_encode($data,JSON_UNESCAPED_UNICODE);?>返回格式[{"title":"Baidu","time":"2000","website":"www.baidu.com"},{"title":"Alibaba","time":"1999","website":"www.alibaba.com"},{"title":"腾讯","time":"1998","website":"www.qq.com"}]第二个type:JSONobject'Baidu','time'=>'2000','website'=>'www.baidu.com');//转JSONechojson_encode($data,JSON_UNESCAPED_UNICODE);?>返回格式{"title":"Baidu","time":"2000","website":"www.baidu.com"}第三种:嵌套JSON对象'Alibaba','time'=>'1999','website'=>'www.alibaba.com','msg'=>array('originator'=>'马云','price'=>'5842.7亿美元','sstime'=>'2014年9月19日'));//转换为JSONEchojson_encode($data,JSON_UNESCAPED_UNICODE);?>返回格式{"title":"Alibaba","time":"1999","website":"www.alibaba.com","msg":{"originator":"JackMa","price":"US$5842.7billion","sstime":"September19,2014"}}第四种:在JSON对象中嵌套数组'Alibaba','time'=>'1999','website'=>'www.alibaba.com','msg'=>array(array('产品'=>'淘宝','url'=>'https://www.taobao.com'),array('product'=>'天猫','url'=>'https://www.tmall.com'),array('product'=>'1688','url'=>'https://www.1688.com')));//转换成JSONechojson_encode($data,JSON_UNESCAPED_UNICODE);?>返回格式{"title":"Alibaba","time":"1999","website":"www.alibaba.com","msg":[{”:"https://www.taobao.com"},{"product":"天猫","url":"https://www.tmall.com"},{"168":","url":"https://www.1688.com"}]}作者:TANKING网址:https://www.likeyunba.com/日期:2020-06-03WeChat:face6009