美文网首页
php中json_encode()与json_decode()

php中json_encode()与json_decode()

作者: 风度翩翩的程序猿 | 来源:发表于2020-06-06 19:17 被阅读0次

首先是json_encode() 意思是将对象,数组的数据格式转换为json格式的数据

<?php
2     $arr=[
3        'apple'=>'apple',
4        'orange'=>'orange',
5        'banana'=>'banana'
6      ];
7 ?>
8   json_encode($arr); //将数组转json格式的数据

其次是json_decode() 将json格式的数据转换为对象,数组,转换为数组要加true

 $json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
  json_decode($json); //转为对象
 json_decode($json,true); //转为数组 

其实很简单,用多了就熟练啦

相关文章

网友评论

      本文标题:php中json_encode()与json_decode()

      本文链接:https://www.haomeiwen.com/subject/gjawzhtx.html