$url = "http://xxxx.163.com/xml.file";
xmlObj = simplexml_load_file($url);
$arrXmlObj = get_object_vars($xmlObj);
if(is_array($arrXmlObj['order'])){
$orders = $arrXmlObj['order'];
foreach($orders as $order){
//some opt
}
}
如果直接simplexml_load_file之后获得的数组无法解析,原因未知,必须使用get_object_vars将获得的xml对象变为数组才可以进行相关操作
原文链接:https://www.f2er.com/xml/298915.html