当前位置:Gxlcms > PHP教程 > ,php解析带命名空间的xml

,php解析带命名空间的xml

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

求助,php解析带命名空间的xml?
xml文件有axis生成的:




{"code":"2","message":"企业名称和企业注册号匹配"}





我想获得ns1:checkQyReturn当中的内容。
请问如何用php获取?
------解决思路----------------------
可以使用new SimpleXmlElement解决


$x = new SimpleXmlElement($str);
foreach($x->entry as $t){
echo $t->id . "
";
echo $t->updated . "
";
$namespaces = $t->getNameSpaces(true);
$gd = $t->children($namespaces['ns1']);
echo $gd->phoneNumber;
}


参考:http://www.neatstudio.com/show-1549-1.shtml

人气教程排行