PHP闭包作用域对静态变量的影响,求大神帮忙看看

发布于 2022-09-04 10:11:01 字数 884 浏览 21 评论 0

function test()
{
    static $object;

    if (is_null($object)) {
        $object = new stdClass();
    }

    return $object;
}

var_dump(test());
echo '<hr>';
var_dump(test());

以上会输出:
object(stdClass)[5]
object(stdClass)[5]
标识符一致,代表同一对象,这没疑问。

接下来改写下,如下:

function test($global)
{
    return function ($param) use ($global) {
        //echo $param;
        //exit;
        static $object;

        if (is_null($object)) {
            $object = new stdClass();
        }

        return $object;
    };
}

$global = '';

$closure = test($global);
$firstCall = $closure(1);

$closure1 = test($global);
$secondCall = $closure1(2);

var_dump($firstCall);
echo '<hr>';
var_dump($secondCall);

此时输出:
object(stdClass)[2]
object(stdClass)[4]
得出结果,非同一对象。

可能我对闭包的作用域不太清楚,希望懂我意思的前辈点播,谢谢!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

终陌 2022-09-11 10:11:01

clipboard.png

作用域仅在函数内有效, 你返回的闭包是两个不同的函数, 所以static $object指向的变量其实是不一样的. 要达到你的预期, 应当这样改写函数:

function test($global)
{
    static $object;
    return function ($param) use (&$object, $global) {
        if (is_null($object)) {
            $object = new stdClass();
        }

        return $object;
    };
}

$global = '';

$closure = test($global);
$firstCall = $closure(1);

$closure1 = test($global);
$secondCall = $closure1(2);

var_dump($firstCall);
echo '<hr>';
var_dump($secondCall);
柠檬心 2022-09-11 10:11:01

参考以下代码

debug_zval_dump($closure);
debug_zval_dump($closure1);

这里我把test函数返回的两个闭包打印了出来

object(Closure)#1 (2) refcount(2){
  ["static"]=>
  array(2) refcount(1){
    ["global"]=>
    string(0) "" refcount(1)
    ["object"]=>
    object(stdClass)#2 (0) refcount(3){
    }
  }
  ["parameter"]=>
  array(1) refcount(1){
    ["$param"]=>
    string(10) "<required>" refcount(1)
  }
}
object(Closure)#3 (2) refcount(2){
  ["static"]=>
  array(2) refcount(1){
    ["global"]=>
    string(0) "" refcount(1)
    ["object"]=>
    object(stdClass)#4 (0) refcount(3){
    }
  }
  ["parameter"]=>
  array(1) refcount(1){
    ["$param"]=>
    string(10) "<required>" refcount(1)
  }
}

从结果看就很清晰了,两次调用返回的闭包函数不是同一个,这就就解释了为什么静态变量$object两次是不同的。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文