Given an array of elements and the task is to determine first and last iteration in foreach loop. There are many ways to solve this problem which are listed below:
Method 1: It is the naive method inside foreach loop to find iteration. Use a counter variable and check when the counter value is zero then it is the first iteration and when the counter value is length-1 then it is the last iteration.
Example:Â
php
<?phpÂ
// PHP program to get first and// last iterationÂ
// Declare an array and initialize it$myarray = array( 1, 2, 3, 4, 5, 6 );Â
// Declare a counter variable and// initialize it with 0$counter = 0;Â
// Loop starts from hereforeach ($myarray as $item) {         // Check condition if count is 0 then     // it is the first iteration    if( $counter == 0 ) {                 // Print the array content        print( $item );        print(": First iteration \n");    }         // Check condition if count is length -1     // then it is last iteration    if( $counter == count( $myarray ) - 1) {                 // Print the array content        print( $item );        print(": Last iteration");    }             $counter = $counter + 1;}Â
?> |
1: First iteration 6: Last iteration
Method 2: Using reset and end function to find first and last iteration. The reset() function is an inbuilt function in PHP which takes array name as argument and return first element of array. The end() function is an inbuilt function in PHP which takes array name as argument and returns its last element.
Example:Â
php
<?phpÂ
// PHP program to get first and// last iterationÂ
// Declare and array and initialize it$myarray = array( 1, 2, 3, 4, 5, 6 );Â
// Loop starts hereforeach ( $myarray as $item ) {         // Check item and the return value of     // reset() function is equal then it     // will be the first iteration    if ( $item === reset( $myarray ) ) {                 // Display the array element        print( $item );        print(": First iteration \n");    }         // Check if item and return value of     // end() function is equal then it    // will be last iteration    else if( $item === end( $myarray ) ) {                 // Display the array element            print( $item );        print(": Last iteration \n");    }}?> |
1: First iteration 6: Last iteration
Method 3: The reset() function is used to find the first iteration in foreach loop. When there is no next element is available in an array then it will be the last iteration and it is calculated by next() function.
Example:Â
php
<?phpÂ
// PHP program to get first and// last iterationÂ
// Declare an array and initialize it$myarray = array( 1, 2, 3, 4, 5, 6 );Â
// Assign first array element to variable$first = reset( $myarray );Â
// Loop starts hereforeach ($myarray as $item) {         // Check if item is equal to first    // element then it is the first    // iteration    if ($item == $first) {                 // Display array element        print( $item );        print(": First iteration \n");    }         // If there is no next element     // in array then this is last iteration    if( !next( $myarray ) ) {                 // Display array element        print( $item );        print(": Last iteration \n");    }}?> |
1: First iteration 6: Last iteration
