Home  >  Article  >  Backend Development  >  PHP multiple array traversal methods

PHP multiple array traversal methods

*文
*文Original
2017-12-26 10:16:031192browse

php has multiple methods of array traversal. This article mainly introduces the use of key, value, current, next and prev functions to traverse arrays in PHP, and provides a more detailed analysis of common techniques for array traversal in PHP. I hope to be helpful.

The example in this article describes the method of traversing an array using key, value, current, next and prev functions in PHP. Share it with everyone for your reference. The specific analysis is as follows:

There is a series of functions for array traversal in php that allow us to operate arrays very conveniently. To traverse an array, the first step is to point the pointer to the beginning of the array and use the reset() function.

Use the prev() and next() functions to view the previous and next elements of the array. You can use the current() function to get the current value at both the location and the location, and use the key() function to get the key value


$array = array('foo' => 'bar', 'baz', 'bat' => 2);
function displayArray(&$array) {
reset($array);
while (key($array) !== null) {
echo key($array) .": " .current($array) . PHP_EOL;
next($array);
}
}

Related recommendations:

Summary of PHP array sorting method

PHP method of converting between arrays and strings

php array function current() definition and usage

The above is the detailed content of PHP multiple array traversal methods. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn