首页  >  文章  >  后端开发  >  PHP JSON转数组

PHP JSON转数组

WBOY
WBOY原创
2016-07-25 09:10:311258浏览
  1. $s='{"webname":"homehf","url":"www.homehf.com","qq":"744348666"}';

  2. $web=json_decode($s); //将字符转成JSON
  3. $arr=array();
  4. foreach($web as $k=>$w) $arr[$k]=$w;
  5. 前三行可以用$web=json_decode($s,true)代替;

  6. print_r($arr);

  7. ?>
复制代码

上面代码中,已经将一个JSON对象转成了一个数组,可是如果是嵌套的JSON,上面的代码显然无能为力了,那么我们写一个函数解决嵌套JSON,

  1. function json_to_array($web){

  2. $arr=array();
  3. foreach($web as $k=>$w){
  4. if(is_object($w)) $arr[$k]=json_to_array($w); //判断类型是不是object
  5. else $arr[$k]=$w;
  6. }
  7. return $arr;
  8. }
  9. $s='{"webname":"homehf","url":"www.homehf.com","contact":{"qq":"744348666","mail":"nieweihf@163.com","xx":"xxxxxxx"}}';

  10. $web=json_decode($s);
  11. $arr=json_to_array($web);
  12. //上一行可以用$web=json_decode($s,true)代替;

  13. print_r($arr);
  14. ?>
复制代码

自定义的json_to_array()方法可以将任何嵌套的JSON转成数组。



声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn