xml转数组
2017-11-23 dingshangchao php开发
有关于的微信开发中经常要处理微信服务器返回的xml数据,将xml转成数组:
$xml = simplexml_load_string($data,NULL,LIBXML_NOCDATA);
$array=json_decode(json_encode($xml),true);
2017-11-23 dingshangchao php开发
有关于的微信开发中经常要处理微信服务器返回的xml数据,将xml转成数组:
$xml = simplexml_load_string($data,NULL,LIBXML_NOCDATA);
$array=json_decode(json_encode($xml),true);