当前位置:Gxlcms > PHP教程 > PHPJSON转数组

PHPJSON转数组

时间:2021-07-01 10:21:17 帮助过:4人阅读

  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转成数组。

人气教程排行