PHP array_walk_recursive()函数
语法
array_walk_recursive( array,funcname [,$parameter])
定义和用法
array_walk_recursive()函数在用户自定义函数中运行每个数组元素。数组的键和值作为函数的参数。
参数
序号 | 参数和描述 |
---|---|
1 | $array(必需) 指定一个数组。 |
2 | $funcname(必需) 用户自定义函数的名称。 |
3 | $parameter(可选) 指定一个参数给用户自定义函数。 |
示例
尝试以下示例 –
<?php
function call_back_function(value,key) {
echo "The key key has the valuevalue \n";
}
input1 = array("a"=>"green", "b"=>"brown", "c"=>"blue" );input2 = array(input1, "d"=>"yellow", "e"=>"black");
array_walk_recursive(input2,"call_back_function");
?>
这将会产生以下结果 –
The key a has the value green
The key b has the value brown
The key c has the value blue
The key d has the value yellow
The key e has the value black