PHP each() Function

In this chapter you will learn:

  1. Definition for PHP each() Function
  2. Syntax for PHP each() Function
  3. Parameter for PHP each() Function
  4. Related methods for PHP each() Function
  5. Return value from each() function
  6. Note for PHP each() Function
  7. Example - Output current element
  8. Example - A loop to output the whole array
  9. Example - A demonstration of all related methods

Definition

The each() function returns the current element key and value, and moves the internal pointer forward.

Syntax

PHP each() Function has the following syntax.

each(array)

Parameter

ParameterIs RequiredDescription
arrayRequired.Specifies the array to use
MethodDescription
current()returns the value of the current element in an array
end()moves the pointer to, and outputs, the last element in the array
next()moves the pointer to, and outputs, the next element in the array
prev()moves the pointer to, and outputs, the previous element in the array
reset()moves the pointer to the first element of the array

Return

each() returns a four - element array rather than a value.

The four-element array that each() returns contains elements with both numeric and string indices, as follows:

Element IndexElement Value
0The current element's key
"key"The current element's key
1The current element's value
"value"The current element's value

We can use an index of either 0 or "key" to access the current element's key, or an index of 1 or "value" to access its value. For example:


<?PHP//from  jav a  2 s  .c om
   $myBook = array( "title" =>  "Learn PHP from java2s.com", 
                   "author" =>  "java2s.com", 
                   "pubYear" =>  2000 ); 

   $element = each( $myBook ); 
   echo "Key: " . $element[0] . "\n"; 
   echo "Value: " . $element[1] . "\n"; 
   echo "Key: " . $element["key"] . "\n"; 
   echo "Value: " . $element["value"] . "\n";   
?>

The code above generates the following result.

Note

The each() function does not move the array cursor back to the first element. It picks up from where the cursor was.

each() can deal with empty variables and unknown keys.

Example 1

Output current element


<?php
$people = array("A", "B", "C", "D");
print_r (each($people));
?>

The code above generates the following result.

Example 2

A loop to output the whole array:


<?php/*from   j a  va 2s.  co m*/
$people = array("A", "B", "C", "D");

reset($people);

while (list($key, $val) = each($people)){
  echo "$key => $val\n";
}
?>

The code above generates the following result.

Example 3

A demonstration of all related methods:


<?php/*j a  v a 2  s .  c  o m*/
$people = array("A", "B", "C", "D");

echo current($people) . "\n"; // The current element is A
echo next($people) . "\n"; // The next element of A is B
echo current($people) . "\n"; // Now the current element is B
echo prev($people) . "\n"; // The previous element of B is A
echo end($people) . "\n"; // The last element is D
echo prev($people) . "\n"; // The previous element of D is C
echo current($people) . "\n"; // Now the current element is C
echo reset($people) . "\n"; // Moves the internal pointer to the first element of the array, which is A
echo next($people) . "\n"; // The next element of A is B

print_r (each($people)); // Returns the key and value of the current element (now B), and moves the internal pointer forward
?>

The code above generates the following result.

Next chapter...

What you will learn in the next chapter:

  1. Definition for PHP end() Function
  2. Syntax for PHP end() Function
  3. Parameter for PHP end() Function
  4. Related methods for PHP end() Function
  5. Note for Related methods
  6. Example - Goes to the end of an array
  7. Example - A demonstration of all related methods
Home » PHP Tutorial » PHP Array Functions
PHP array() function
PHP array_change_key_case() function
PHP array_chunk() function
PHP array_combine() function
PHP array_count_values() function
PHP array_diff() function
PHP array_diff_assoc() Function
PHP array_diff_key() function
PHP array_diff_uassoc() function
PHP array_diff_ukey() function
PHP array_fill() function
PHP array_fill_keys() function
PHP array_filter() function
PHP array_flip() function
PHP array_intersect() Function
PHP array_intersect_assoc() Function
PHP array_intersect_key() function
PHP array_intersect_uassoc() Function
PHP array_intersect_ukey() Function
PHP array_key_exists() Function
PHP array_keys() function
PHP array_map() Function
PHP array_merge() function
PHP array_merge_recursive() Function
PHP array_multisort() Function
PHP array_pad() Function
PHP array_pop() function
PHP array_product() Function
PHP array_push() function
PHP array_rand() function
PHP array_reduce() Function
PHP array_replace() Function
PHP array_replace_recursive() Function
PHP array_reverse() Function
PHP array_search() Function
PHP array_shift() Function
PHP array_slice() Function
PHP array_splice() Function
PHP array_sum() Function
PHP array_udiff() Function
PHP array_udiff_assoc() Function
PHP array_udiff_uassoc() Function
PHP array_uintersect() Function
PHP array_uintersect_assoc() Function
PHP array_uintersect_uassoc() Function
PHP array_unique() Function
PHP array_unshift() Function
PHP array_values() Function
PHP array_walk() Function
PHP array_walk_recursive() Function
PHP arsort() Function
PHP asort() Function
PHP compact() Function
PHP count() Function
PHP current() Function
PHP each() Function
PHP end() Function
PHP explode() Function
PHP extract() Function
PHP implode() Function
PHP in_array() Function
PHP key() Function
PHP krsort() Function
PHP ksort() Function
PHP list() Function
PHP natcasesort() Function
PHP natsort() Function
PHP next() Function
PHP pos() Function
PHP prev() Function
PHP range() Function
PHP reset() Function
PHP rsort() Function
PHP shuffle() Function
PHP sizeof() Function
PHP sort() Function
PHP uasort() Function
PHP uksort() Function
PHP usort() Function