class Exam {
public $foo = 1;
public static function increaseFoo(){
$this->foo++;
echo $this->foo;
}
}
Exam::increaseFoo();
此代碼生成一個錯誤如何使用普通變量中靜態方法
E_ERROR : type 1 -- Using $this when not in object context -- at line 5
是不是可以使用全局變量爲靜態馬託?
我已經添加了關於這個問題的意見。 SORRY YOU can do that –