PHP 中的 array_walk_recursive() 函数
phpprogrammingserver side programming
array_walk_recursice() 函数将用户函数递归应用于数组的每个成员。
语法
array_walk_recursive(arr, custom_func, param)
参数
arr − 指定的数组。必需。
custom_func − 用户定义的函数。必需。
parameter − 要为自定义函数设置的参数。可选。
返回
array_walk_recursive() 函数在成功时返回 TRUE,在失败时返回 FALSE。
示例
以下是示例 −
<?php function display($val,$key) { echo "Key $key with the value $val<br>"; } $arr1 = array("p"=>"accessories","q"=>"footwear"); $arr2 = array($arr1,"1"=>"electronics"); array_walk_recursive($arr2,"display"); ?>
输出
Key p with the value accessories Key q with the value footwear Key 1 with the value electronics
示例
让我们看另一个传递另一个参数的示例−
<?php function display($val,$key, $extra) { echo "Key $key $extra $val<br>"; } $arr1 = array("p"=>"accessories","q"=>"footwear"); $arr2 = array($arr1,"5"=>"electronics"); array_walk_recursive($arr2,"display", "with value"); ?>
输出
Key p with the value accessories Key q with the value footwear Key 5 with the value electronics