当前位置:  开发笔记 > 编程语言 > 正文

使用具有多个名称空间的SimpleXML解析XML

如何解决《使用具有多个名称空间的SimpleXML解析XML》经验,为你挑选了2个好方法。

我有这个丑陋的XML,它上面有很多命名空间,当我尝试用simpleXML加载它时,如果我指的是第一个命名空间我会得到一个xml对象,但是跟随其他命名空间的标记不会进入该对象.

我该如何解析这个XML?



    
        
            
                wscompany.com
            
            
                mysite.com
            
            something
            moredata.com
            theservice
            theaction
            
                a certain messageid
                2009-04-11T18:43:58
                mid:areference
            
        
        
            an impresive binary security toekn
        
    
    
        
            the goodbye token
        
    

我试图用下面的代码解析它


但是$ xml对象只包含以下内容

SimpleXMLElement Object
(
    [Header] => SimpleXMLElement Object
        (
        )

    [Body] => SimpleXMLElement Object
        (
        )

)

Kieran Hall.. 32

我认为您需要使用XPath注册命名空间和访问权限.像下面这样的东西应该让你去(我没有设施来测试这个).

$xml = simplexml_load_string($res, NULL, NULL, "http://schemas.xmlsoap.org/soap/envelope/");
$xml->registerXPathNamespace('soap-env', 'http://schemas.xmlsoap.org/soap/envelope/');
$xml->registerXPathNamespace('eb', 'http://www.ebxml.org/namespaces/messageHeader');
$xml->registerXPathNamespace('wsse', 'http://schemas.xmlsoap.org/ws/2002/12/secext');

然后你可以这样做:

foreach($xml->xpath('//eb:MessageHeader') as $header)
{
    var_export($header->xpath('//eb:CPAId')); // Should output 'something'.
}

您可能不需要注册命名空间,考虑它,因为它们在XML中已经存在.虽然不确定,但需要测试.

希望这可以帮助.



1> Kieran Hall..:

我认为您需要使用XPath注册命名空间和访问权限.像下面这样的东西应该让你去(我没有设施来测试这个).

$xml = simplexml_load_string($res, NULL, NULL, "http://schemas.xmlsoap.org/soap/envelope/");
$xml->registerXPathNamespace('soap-env', 'http://schemas.xmlsoap.org/soap/envelope/');
$xml->registerXPathNamespace('eb', 'http://www.ebxml.org/namespaces/messageHeader');
$xml->registerXPathNamespace('wsse', 'http://schemas.xmlsoap.org/ws/2002/12/secext');

然后你可以这样做:

foreach($xml->xpath('//eb:MessageHeader') as $header)
{
    var_export($header->xpath('//eb:CPAId')); // Should output 'something'.
}

您可能不需要注册命名空间,考虑它,因为它们在XML中已经存在.虽然不确定,但需要测试.

希望这可以帮助.


我已经准确地使用了你所提出的建议,但是我仍然得到`array(0 => SimpleXMLElement :: __ set_state(array()),)这种结果.我不明白为什么.你能解释一下吗?

2> IMSoP..:

1)不要使用print_r和朋友一起看看SimpleXML对象中的内容.有关说明和替代方法,请参阅https://github.com/IMSoP/simplexml_debug.

2)SimpleXML中的命名空间支持由->children()->attributes()方法提供.

例如,您可以像这样获取From节点的PartyId:

$from_party = (string)$xml->children('soap-env', true)->Header->children('eb', true)->MessageHeader->From->PartyId;

推荐阅读
携手相约幸福
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有