我不明白爲什麼以下不適合我。我複製了我的一些教程中,但在運行程序時,我得到一個錯誤:php:在構造函數中訪問類變量
class tc {
private $test = NULL;
public function __construct(){
$this->$test = 'sdfsdf';
}
}
創建對象:
$test = new tc;
Undefined variable: test
Cannot access empty property..
我知道這是很基本的,但不明白是什麼我做錯了。
嘗試'$ this-> test'(正如Abra指出的那樣)。我看到它之前評論。 – Dutchie432
另外,也許不要使用這些教程:-) – AbraCadaver