Tuesday, October 7, 2025
HomeLanguagesPHP | AppendIterator rewind() Function

PHP | AppendIterator rewind() Function

The AppendIterator::rewind() function is an inbuilt function in PHP which is used to rewind to the first element of the first inner Iterator.

Syntax:

void AppendIterator::rewind( void )

Parameters: This function does not accept any parameters.

Return Value: This function does not return any value.

Below programs illustrate the AppendIterator::rewind() function in PHP:

Program 1:




<?php
   
// Declare an ArrayIterator
$arr1 = new ArrayIterator(array("Geeks", "for", "Geeks"));
   
// Create a new AppendIterator
$itr = new AppendIterator;
$itr->append($arr1);
  
// Using rewind function 
$itr->rewind(); 
    
// Get current data  
var_dump($itr->current()); 
    
// Move on to next object 
$itr->next(); 
    
// Get current data  
var_dump($itr->current()); 
    
// Again using rewind function 
$itr->rewind(); 
    
// Get current data  
var_dump($itr->current()); 
   
?>


Output:

string(5) "Geeks"
string(3) "for"
string(5) "Geeks"

Program 2:




<?php
   
// Declare an ArrayIterator
$arr1 = new ArrayIterator(array("Geeks", "for", "Geeks"));
$arr2 = new ArrayIterator(array("Computer", "Science", "Portal"));
  
// Create a new AppendIterator
$itr = new AppendIterator;
$itr->append($arr1);
$itr->append($arr2);
  
// Using rewind function 
$itr->rewind(); 
    
while($itr->valid()) { 
    var_dump($itr->current()); 
        
    // Moving to next element 
    $itr->next(); 
} 
   
?>


Output:

string(5) "Geeks"
string(3) "for"
string(5) "Geeks"
string(8) "Computer"
string(7) "Science"
string(6) "Portal"

Reference: https://www.php.net/manual/en/appenditerator.rewind.php

RELATED ARTICLES

Most Popular

Dominic
32339 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6708 POSTS0 COMMENTS
Nicole Veronica
11872 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6827 POSTS0 COMMENTS
Ted Musemwa
7090 POSTS0 COMMENTS
Thapelo Manthata
6780 POSTS0 COMMENTS
Umr Jansen
6784 POSTS0 COMMENTS