0
Simple XMLElement Object
(    
         [IpStatus] => 1    
         [ti_pid_20642] => SimpleXmlElement Object    
               (

我有一个上述格式的 SimpleXMLElment,这个 XML 是在运行时生成的,它的节点值ti_pid_20642部分是动态的,例如ti_pid_3232, ti-pid_2323, ti_pid_anyumber

我的问题是如何获取这些节点值以及使用 PHP 的子节点?

4

1 回答 1

0

要使用 SimpleXML 获取 XML字符串中使用的所有节点名称,您可以使用SimpleXMLIterator

$tagnames = array_keys(iterator_to_array(
    new RecursiveIteratorIterator(
        new SimpleXMLIterator($string)
        , RecursiveIteratorIterator::SELF_FIRST
    )
));

print_r($tagnames);

这可以给你示范(你没有在你的问题中给出任何 XML,Demo):

Array
(
    [0] => IpStatus
    [1] => ti_pid_20642
    [2] => dependend
    [3] => ti-pid_2323
    [4] => ti_pid_anyumber
    [5] => more
)

如果您在提供包含有效 XML 的字符串时遇到问题,请使用您现有的 SimpleXMLelement 并从中创建一个 XML 字符串

$string = $simpleXML->asXML();

但是,如果您想从 SimpleXML 对象中获取所有标记名,但又不想将其转换为字符串,您也可以创建一个递归迭代器SimpleXMLElement

class SimpleXMLElementIterator extends IteratorIterator implements RecursiveIterator
{
    private $element;

    public function __construct(SimpleXMLElement $element) {
        parent::__construct($element);
    }

    public function hasChildren() {
        return (bool)$this->current()->children();
    }

    public function getChildren() {
        return new self($this->current()->children());
    }
}

它的用法类似(Demo):

$it      = new RecursiveIteratorIterator(
    new SimpleXMLElementIterator($xml), RecursiveIteratorIterator::SELF_FIRST
);
$tagnames = array_keys(iterator_to_array($it));

这取决于你需要什么。

有了命名空间的元素,这变得不那么直接了。取决于您是否只想获取本地名称或命名空间名称,甚至是带有标记名的命名空间 URI。

可以更改给定SimpleXMLElementIterator以支持跨命名空间元素的迭代,默认情况下 simplexml 仅提供对默认命名空间中元素的遍历:

/**
 * SimpleXMLElementIterator over all child elements across namespaces 
 */
class SimpleXMLElementIterator extends IteratorIterator implements RecursiveIterator
{
    private $element;

    public function __construct(SimpleXMLElement $element) {
        parent::__construct(new ArrayIterator($element->xpath('./*')));
    }

    public function key() {
        return $this->current()->getName();
    }

    public function hasChildren() {
        return (bool)$this->current()->xpath('./*');
    }

    public function getChildren() {
        return new self($this->current());
    }
}

然后,您需要检查每个元素的名称空间 - 例如,使用名称空间的修改后的 XML 文档:

<root xmlns="namspace:default" xmlns:ns1="namespace.numbered.1">
    <ns1:IpStatus>1</ns1:IpStatus>
    <ti_pid_20642>
        <dependend xmlns="namspace:depending">
            <ti-pid_2323>ti-pid_2323</ti-pid_2323>
            <ti_pid_anyumber>ti_pid_anyumber</ti_pid_anyumber>
            <more xmlns:ns2="namspace.numbered.2">
                <ti_pid_20642 ns2:attribute="test">ti_pid_20642</ti_pid_20642>
                <ns2:ti_pid_20642>ti_pid_20642</ns2:ti_pid_20642>
            </more>
        </dependend>
    </ti_pid_20642>
</root>

结合SimpleXMLIterator上面的更新,以下示例代码演示了新行为:

$xml = new SimpleXMLElement($string);
$it  = new RecursiveIteratorIterator(
    new SimpleXMLElementIterator($xml), RecursiveIteratorIterator::SELF_FIRST
);

$count = 0;
foreach ($it as $name => $element) {
    $nsList = $element->getNamespaces();
    list($ns, $nsUri) = each($nsList);
    printf("#%d:  %' -20s  %' -4s  %s\n", ++$count, $name, $ns, $nsUri);
}

输出(演示):

#1:  IpStatus              ns1   namespace.numbered.1
#2:  ti_pid_20642                namspace:default
#3:  dependend                   namspace:depending
#4:  ti-pid_2323                 namspace:depending
#5:  ti_pid_anyumber             namspace:depending
#6:  more                        namspace:depending
#7:  ti_pid_20642                namspace:depending
#8:  ti_pid_20642          ns2   namspace.numbered.2

玩得开心。

于 2012-11-04T18:14:04.390 回答