我有一个变量$id = 10
,它需要在里面使用array_walk()
。如下所示:
$id = 10;
array_walk($profile_items, function(&$a) {
$count = $this->db->where('profile_item_id', $a['id'])->where('cover_type_id', $id)->count_all_results('cover_type_profile_items_link');
$a['selected'] = $id;
});
echo "<pre>";
print_r($profile_items).exit;
当我$id
在其中使用变量array_walk()
时显示错误。
消息:未定义变量:id
有什么解决办法吗?
谢谢你的建议