SimpleXMLElement::getChildren

(没有版本信息可用,可能只存在于 Git 中)

SimpleXMLElement::getChildren返回当前元素的子元素

描述

public SimpleXMLElement::getChildren(): ?SimpleXMLElement
警告

在 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

添加说明

用户贡献的说明

此页面没有用户贡献的说明。
To Top