La función SimpleXMLIterator::next() es una función incorporada en PHP que se usa para mover el elemento SimpleXMLIterator al siguiente elemento.
Sintaxis:
void SimpleXMLIterator::next( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función no devuelve ningún valor.
El siguiente programa ilustra la función SimpleXMLIterator::next() 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); // Use rewind() function to rewind // to the first element $xmlIt->rewind(); // Use next() function to move // to the next element $xmlIt->next(); $xmlIt->next(); // Display the current element var_dump($xmlIt->current()); ?>
Producción:
object(SimpleXMLIterator)#2 (2) { ["email"]=> string(21) "abc@geeksforgeeks.org" ["mobile"]=> string(13) "+91-987654321" }
Referencia: https://www.php.net/manual/en/simplexmliterator.next.php