Longhorn PHP 2023 - Call for Papers

SimpleXMLElement::getChildren

(No version information available, might only be in Git)

SimpleXMLElement::getChildrenReturns the sub-elements of the current element

Описание

public SimpleXMLElement::getChildren(): ?SimpleXMLElement
Внимание

Prior to PHP 8.0, SimpleXMLElement::getChildren() was only declared on the subclass SimpleXMLIterator.

This method returns a SimpleXMLElement object containing sub-elements of the current SimpleXMLElement element.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

Returns a SimpleXMLElement object containing the sub-elements of the current element.

Примеры

Пример #1 Return the sub-elements of the current element

<?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

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top