(没有版本信息可用,可能只存在于 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