PHP array_walk()
函数返回来自输入数组的所有键和值,并通过回调函数处理。
array_walk()
函数语法是 -
array_walk ( $array, $funcname [, $parameter] );
参数
- array - 一个指定的数组。
- funcname - 一个用户自定义函数。
- parameter - 它为用户自定义函数指定的一个参数。
返回值
- 成功返回
TRUE
,失败则返回FALSE
。
示例
试试下面的例子 -
<?php
function call_back_function($value,$key) {
echo "The key $key has the value $value n";
}
$input = array("a"=>"green", "b"=>"brown", "c"=>"blue", "red");
array_walk($input,"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 0 has the value red