简单的问题,但很难回答?我在类方法中有以下匿名函数:
$unnest_array = function($nested, $key) {
$unnested = array();
foreach ($nested as $value) {
$unnested[] = (object) $value[$key];
}
return $unnested;
};
在同一个类方法中,我有这个数组,我保存匿名函数。即我使用内联create_function()
创建一个新的匿名函数,我想使用已经定义的匿名函数$unnest_array()
。可能吗?
$this->_funcs = array(
'directors' => array(
'func' => create_function('$directors', 'return $unnest_array($directors, "director");'),
'args' => array('directors')
)
);
目前我正在收到“Undefined variable:unnest_array”。帮助
答案 0 :(得分:2)
为什么你首先使用create_function
?闭包完全替换create_function
,在5.3之后的所有PHP版本中基本上都过时了。通过将第二个参数修改为$unnest_array
,您似乎正在尝试partially apply "director"
。
除非我误解了你,否则你应该能够通过使用闭包/匿名函数(未经测试)来获得相同的结果:
$this->_funcs = array(
'directors' => array(
'func' => function($directors) use ($unnest_array)
{
return $unnest_array($directors, "director");
},
'args' => array('directors')
)
);
use ($unnest_array)
子句是访问闭包父作用域中的局部变量所必需的。