gpt4 book ai didi

PHP:OOP 中的变量作用域?

转载 作者:可可西里 更新时间:2023-10-31 23:52:33 26 4
gpt4 key购买 nike

这是我的代码:

class Manual extends controller {

function Manual(){
parent::Controller();
$myVar = 'blablabla';


}

function doStuff(){
echo $myVar; // Doesn't work.
}

}

我已经尝试了各种方法来让它工作,但我无法理解它。我能做什么?

谢谢

最佳答案

在您的代码中,$myVar 对于每个方法都是本地的。

也许你的意思是 $this->myVar?

关于PHP:OOP 中的变量作用域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3142842/

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