VOOZH about

URL: https://www.geeksforgeeks.org/php/php-simplexmliterator-rewind-function/

⇱ PHP | SimpleXMLIterator rewind() Function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

PHP | SimpleXMLIterator rewind() Function

Last Updated : 12 Jul, 2025
The SimpleXMLIterator::rewind() function is an inbuilt function in PHP which is used to rewind the SimpleXMLIterator to the first element. Syntax:
void SimpleXMLIterator::rewind( void )
Parameters: This function does not accept any parameters. Return Value: This function does not return any value. Below programs illustrate the SimpleXMLIterator::rewind() function in PHP: Program 1:
Output:
object(SimpleXMLIterator)#2 (2) {
 ["email"]=>
 string(21) "abc@geeksforgeeks.org"
 ["mobile"]=>
 string(13) "+91-987654321"
}
Program 2:
Output:
string(4) "name"
string(7) "address"
string(7) "contact"
Reference: https://www.php.net/manual/en/simplexmlelement.rewind
Comment