gpt4 book ai didi

php - 是否有可能获得函数的静态值?

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:43:15 26 4
gpt4 key购买 nike

我从来没有意识到 PHP 中的函数可以有自己的静态变量,就像这样:

function example() {
static $heavy;

if ($heavy === null) {
$heavy = new HeavyClass();
}

return $heavy->doSomething();
}

我的问题是,是否可以从外部访问这个静态值?像 example::$heavy 这样的东西,显然是行不通的。

最佳答案

正如评论中所建议的,这可以通过 ReflectionFunctionAbstract::getStaticVariables() 完成方法。

例子:

$heavy = (new ReflectionFunction('example'))->getStaticVariables()['heavy'];

关于php - 是否有可能获得函数的静态值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54992796/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com