dongyan1548 2012-08-12 18:56
浏览 62
已采纳

在匿名函数内调用匿名函数(Inception)

Simple question, but tough answer? I have the following anonymous function inside a class method:

$unnest_array = function($nested, $key) {
    $unnested = array();

    foreach ($nested as $value) {
        $unnested[] = (object) $value[$key];
    }

    return $unnested;
};

In the same class method I have this array, where I save anonymous functions. I.e. I create a new anonymous function using the inline create_function() and I would want to use the already defined anonymous function $unnest_array(). Is it possible?

$this->_funcs = array(
    'directors' => array(
        'func'  => create_function('$directors', 'return $unnest_array($directors, "director");'),
        'args'  => array('directors')
    )
);

At the moment I am getting "Undefined variable: unnest_array". Help?

  • 写回答

1条回答 默认 最新

  • dousi7919 2012-08-12 19:04
    关注

    Why are you using create_function in the first place? Closures replace create_function entirely, leaving it essentially obsolete in all versions of PHP after 5.3. It seems like you're trying to partially apply $unnest_array by fixing the second argument as "director".

    Unless I've misunderstood you, you should be able to achieve the same result by using a closure/anonymous function (untested):

    $this->_funcs = array(
        'directors' => array(
            'func'  => function($directors) use ($unnest_array)
                {
                    return $unnest_array($directors, "director");
                },
            'args'  => array('directors')
        )
    );
    

    The use ($unnest_array) clause is necessary to access local variables in the parent scope of the closure.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度