编程语言
首页 > 编程语言> > PHP闭包和隐式全局变量范围

PHP闭包和隐式全局变量范围

作者:互联网

有没有办法可以隐含地将顶级变量声明为闭包中使用的全局变量?

例如,如果使用如下代码:

$a = 0; //A TOP-LEVEL VARIABLE

Alpha::create('myAlpha')
    ->bind(DataSingleton::getInstance()
        ->query('c')
    )
    ->addBeta('myBeta', function($obj){
        $obj->bind(DataSingleton::getInstance()
                ->query('d')
            )
            ->addGamma('myGamma', function($obj){
                $obj->bind(DataSingleton::getInstance()
                        ->query('a')
                    )
                    ->addDelta('myDelta', function($obj){
                        $obj->bind(DataSingleton::getInstance()
                            ->query('b')
                        );
                    });
            })
            ->addGamma('myGamma', function($obj){

                $a++; //OUT OF MY SCOPE

                $obj->bind(DataSingleton::getInstance()
                        ->query('c')
                    )
                    .
                    .
                    .

从这样的方法调用闭包:

    public function __construct($name, $closure = null){
        $this->_name = $name;
        is_callable($closure) ? $closure($this) : null;
    }

所以在summary / TL; DR中,有没有一种方法可以隐式地将变量声明为全局,以便在不使用全局关键字或$GLOBALS超全局的闭包(或其他函数)中使用?

我在另一个频繁的论坛上开始这个话题(http://www.vbforums.com/showthread.php?p=3905718#post3905718)

解决方法:

你必须在闭包定义中声明它们:

->addBeta('myBeta', function($obj) use ($a) { // ...

否则,您必须使用global关键字.你必须为每个使用$a的闭包执行此操作.

标签:php,scope,closures,global-variables,anonymous-function
来源: https://codeday.me/bug/20191006/1861977.html