我有
this PHP代码段:
<?PHP $colors = array('red','green','blue'); foreach ($colors as &$item) { $item = 'color-'.$item; } print_r($colors); ?>
输出:
Array ( [0] => color-red [1] => color-green [2] => color-blue )
这是更简单的解决方案吗?
(某些数组PHP函数就像array_insert_before_all_items($colors,“color-”))?
谢谢
方法
array_walk将允许您通过回调“访问”数组中的每个项目.使用PHP 5.3,您甚至可以使用
anonymous functions
原文链接:https://www.f2er.com/php/135833.htmlPre PHP 5.3版本:
function carPrefix(&$value,$key) { $value="car-$value"; } array_walk($colors,"carPrefix"); print_r($colors);
较新的匿名功能版本:
array_walk($colors,function (&$value,$key) { $value="car-$value"; }); print_r($colors);