array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'tr', ), 'this' => array ( 0 => 'simplexmlelement.getchildren.php', 1 => 'SimpleXMLElement::getChildren', 2 => 'Returns the sub-elements of the current element', ), 'up' => array ( 0 => 'class.simplexmlelement.php', 1 => 'SimpleXMLElement', ), 'prev' => array ( 0 => 'simplexmlelement.getnamespaces.php', 1 => 'SimpleXMLElement::getNamespaces', ), 'next' => array ( 0 => 'simplexmlelement.haschildren.php', 1 => 'SimpleXMLElement::hasChildren', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/simplexml/simplexmlelement/getchildren.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

SimpleXMLElement::getChildren

(PHP 8)

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

Açıklama

public SimpleXMLElement::getChildren(): ?SimpleXMLElement
Uyarı

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.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

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

Örnekler

Örnek 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";
}
}
?>

Yukarıdaki örneğin çıktısı:

The title is 'PHP Basics' from the class SimpleXMLElement
The author is 'Jim Smith' from the class SimpleXMLElement