两句话将xml字符串转换成数组.
程序员文章站
2022-05-19 21:23:29
...
php代码:
<?php $xml=new SimpleXMLElement($string); $array = json_decode(json_encode($xml),true); ?>