PHP处理XML数据及转JSON数组simplexml_load_file和simplexml_load_string
转换 XML 文件为 SimpleXMLElement 对象,然后输出对象的键和元素:
<?php
$xml=simplexml_load_file("note.xml");
print_r($xml);
?>
以上代码在实际处理中可能会遇到数据丢失,SSL出错等情况,所以使用simplexml_load_string
simplexml_load_string:转换形式良好的 XML 字符串为 SimpleXMLElement 对象,然后输出对象的键和元素:
<?php
$note=<<<XML
<note>
<to>Tove</to>
<