PHP array_walk()函数
语法
array_walk ( array,funcname [, $parameter] );
定义和用法
此函数返回一个数组,其中包含在所有参数array2,array3中都存在的array1的所有值。
参数
序号 | 参数与描述 |
---|---|
1 | $array(必填) 它指定了一个数组。 |
2 | $funcname(必填) 用户定义函数的名称。 |
3 | $parameter(可选) 它指定了用户定义函数的参数。 |
示例
尝试以下示例:
<?php
function call_back_function(value,key) {
echo "The key key has the valuevalue \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