PHP | Función SimpleXMLIterator getChildren()

La función SimpleXMLIterator::getChildren() es una función incorporada en PHP que se utiliza para devolver el objeto SimpleXMLIterator que contiene subelementos del elemento actual.

Sintaxis:

SimpleXMLIterator SimpleXMLIterator::getChildren( void )

Parámetros: Esta función no acepta ningún parámetro.

Valor de retorno: esta función devuelve el objeto SimpleXMLIterator que contiene los subelementos del elemento actual.

El siguiente programa ilustra la función SimpleXMLIterator::getChildren() en PHP:

Programa:

<?php
  
// Store the xml element to variable
$xml = <<<XML
    <organization>
        <name>GeeksforGeeks</name>
        <address>Noida India</address>
        <contact>
            <email>abc@geeksforgeeks.org</email>
            <mobile>+91-987654321</mobile>
        </contact>
    </organization>
XML;
  
$xmlIt = new SimpleXMLIterator($xml);
  
// Loop starts from first element of xml and 
// run upto when elements are not valid
for( $xmlIt->rewind(); $xmlIt->valid(); $xmlIt->next() ) {
      
    foreach($xmlIt->getChildren() as $element => $content) {
        echo "The content of '$element' element is '$content'" . "\n";
    }
}
  
?>
Producción:

The content of 'email' element is 'abc@geeksforgeeks.org'
The content of 'mobile' element is '+91-987654321'

Referencia: https://www.php.net/manual/en/simplexmliterator.getchildren.php

Publicación traducida automáticamente

Artículo escrito por jit_t y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *