话不多说,直接上代码
// 如果你需要这样写
foreach ($arr as &$item) {
$item['a'] = 'a';
}
// 若后续还会遍历此数组,为了避免因引用对后面的影响,最好转成这样写
array_walk($arr, function (&$item) {
$item['a'] = 'a';
});
博客列表 >foreach循环中需要引用时用闭包替代
// 如果你需要这样写
foreach ($arr as &$item) {
$item['a'] = 'a';
}
// 若后续还会遍历此数组,为了避免因引用对后面的影响,最好转成这样写
array_walk($arr, function (&$item) {
$item['a'] = 'a';
});