我的应用程序中包含以下行代码。
谁能告诉我以下use
函数中 array_map()
关键字的用途是什么?
array_map( function($record) use ($edit_form, $otherfields, $otherfields_keys)
{
User::parseData($record, $edit_form['metadata']);
if (isset($otherfields[$record['user_id']])) {
return $record + $otherfields[$record['user_id']];
}
return $record + $otherfields_keys;
}, $records);
提前致谢。
最佳答案
传递给array_map()
的回调无法访问外部变量,因此必须使用use
进行传递。
您可以在PHP documentation中阅读有关匿名函数的更多信息。
关于php - PHP的目的是在array_map()函数中使用关键字?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47638714/