(无版本信息可用,可能仅在 Git 中)
SimpleXMLElement::getChildren — 返回当前元素的子元素
在 PHP 8.0 之前,SimpleXMLElement::getChildren() 仅在子类 SimpleXMLIterator 上声明。
此方法返回一个包含当前 SimpleXMLElement 元素的子元素的 SimpleXMLElement 对象。
此函数没有参数。
返回一个包含当前元素的子元素的 SimpleXMLElement 对象。
示例 #1 返回当前元素的子元素
<?php
$xml = <<<XML
<books>
<book>
<title>PHP Basics</title>
<author>Jim Smith</author>
</book>
<book>XML basics</book>
</books>
XML;
$xmlElement = new SimpleXMLElement($xml);
for ($xmlElement->rewind(); $xmlElement->valid(); $xmlElement->next()) {
foreach($xmlElement->getChildren() as $name => $data) {
echo "The $name is '$data' from the class " . get_class($data) . "\n";
}
}
?>
以上示例将输出
The title is 'PHP Basics' from the class SimpleXMLElement The author is 'Jim Smith' from the class SimpleXMLElement