PHP array_walk() function definition and usage
PHP array_walk() function for each element in the array Apply callback function. Returns TRUE if successful, FALSE otherwise.
Typically function accepts two parameters. The value of the array parameter is used as the first one, and the key name is used as the second one. If the optional parameter userdata is provided, it will be passed to the callback function as the third parameter.
If function requires more arguments than given, an E_WARNING level error will be generated each time array_walk() calls function. These warnings can be suppressed by preceding the array_walk() call with PHP's error operator @, or by using error_reporting().
PHP array_walk() function syntax
array_walk(array, function, userdata...)
PHP array_walk() function parameters with description
array required. Specifies an array.
function required. The name of the user-defined function.
userdata optional. The value entered by the user can be used as a parameter of the callback function.
PHP array_walk() function tips and comments
Tip: You can set one or more parameters for the function.
Note: If the callback function needs to act directly on the values in the array, you can specify the first parameter of the callback function as a reference: &$value. (See Example 3)
Note: Passing key names and userdata into functions is new in PHP 4.0.
PHP array_walk() function example 1
<ol class="dp-xml"> <li class="alt"><span><span class="tag"><</span><span> ?php </span></span></li><li><span>function myfunction($value,$key) </span></li><li class="alt"><span>{ </span></li><li><span>echo "The key $key has the value<br /> $value</span><span class="tag"><</span><span class="tag-name">br</span><span> </span><span class="tag">/></span><span>"; </span></span></li> <li class="alt"><span>} </span></li> <li> <span>$</span><span class="attribute">a</span><span>=</span><span class="attribute-value">array</span><span>("a"=</span><span class="tag">></span><span>"Cat","b"=</span><span class="tag">></span><span>"Dog",<br>"c"=</span><span class="tag">></span><span>"Horse"); </span> </li> <li class="alt"><span>array_walk($a,"myfunction"); </span></li> <li> <span class="tag">?></span><span> </span> </li> <li class="alt"><span> </span></li> </ol>
Output:
The key a has the value Cat
The key b has the value Dog
The key c has the value Horse