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

phpxml转数组

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

php xml转数组

开发微信返回的是的xml感觉会比较齐全。但是我需要的是数组。那么我得把xml转换为数组。php已经给我们有许多的内设函数了。所以我们只要调用就OK了。先用 simplexml_load_string 格式化一下 。

然后在用 json_decode 转换为数组。php xml转数组例子

  $str = '';
  $res = @simplexml_load_string($str,NULL,LIBXML_NOCDATA);
  $res = json_decode(json_encode($res),true);
  print_r($res);

人气教程排行