SimpleXMLElement从特定节点获取值

时间:2017-05-31 15:17:06

标签: php arrays xml

我尝试使用simplexml从html字符串中获取标记内的特定值。这是simplexml示例输出:

    SimpleXMLElement Object (

    [comment] => SimpleXMLElement Object ( ) 

    [div] => Array ( 

        [0] => SimpleXMLElement Object (

             [@attributes] => Array (

                 [class] => col left 

             ) 

             [mod] => name 
        ) 

        [1] => SimpleXMLElement Object ( 

            [@attributes] => Array ( 

                [class] => col right ) 

                [mod] => name 

        ) 

    ) 

 )

我需要的是从[mod]节点中仅提取值(和键,如果可能),而不管字符串中存在的div或其他元素的数量,并将值分配给数组。

0 个答案:

没有答案