> 백엔드 개발 > PHP 튜토리얼 > ,php解析带命名空间的xml?

,php解析带命名空间的xml?

WBOY
풀어 주다: 2016-06-20 12:44:37
원래의
1231명이 탐색했습니다.

xml文件有axis生成的:




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





我想获得ns1:checkQyReturn当中的内容。
请问如何用php获取?


回复讨论(解决方案)

可以使用new SimpleXmlElement解决

$x = new SimpleXmlElement($str);  foreach($x->entry as $t){      echo $t->id . "<br >";      echo $t->updated . "<br />";      $namespaces = $t->getNameSpaces(true);      $gd = $t->children($namespaces['ns1']);       echo $gd->phoneNumber;  } 
로그인 후 복사


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


可以使用new SimpleXmlElement解决

试了命名空间,但解析不了最后用的转换json才解析的。
$xmlstr = preg_replace('/\sxmlns="(.*?)"/', ' _xmlns="${1}"', $simple);
$xmlstr = preg_replace('/<(\/)?(\w+):(\w+)/', '<${1}${2}_${3}', $xmlstr);
$xmlstr = preg_replace('/(\w+):(\w+)="(.*?)"/', '${1}_${2}="${3}"', $xmlstr);
$xmlobj = simplexml_load_string($xmlstr);

$json = json_decode(json_encode($xmlobj), true);
//print_r(json_decode(json_encode($xmlobj), true));
//print_r($json);
$str = $json['soapenv_Body']['checkQyResponse']['ns1_checkQyReturn'];

暴力一下就简单多了

$s =<<< XML<?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><checkQyResponse xmlns=""><ns1:checkQyReturn xmlns:ns1="http://jandar.com.cn">{{"code":"2","message":"&#x4F01;&#x4E1A;&#x540D;&#x79F0;&#x548C;&#x4F01;&#x4E1A;&#x6CE8;&#x518C;&#x53F7;&#x5339;&#x914D;"}</ns1:checkQyReturn></checkQyResponse></soapenv:Body></soapenv:Envelope>XML;$s = preg_replace('/\w+:/', '', $s);$x = simplexml_load_string($s);print_r($x);
로그인 후 복사
SimpleXMLElement Object(    [@attributes] => Array        (            [soapenv] => //schemas.xmlsoap.org/soap/envelope/            [xsd] => //www.w3.org/2001/XMLSchema            [xsi] => //www.w3.org/2001/XMLSchema-instance        )    [Body] => SimpleXMLElement Object        (            [checkQyResponse] => SimpleXMLElement Object                (                    [checkQyReturn] => {"code":"2","message":"企业名称和企业注册号匹配"}                )        ))
로그인 후 복사

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿