Ben bu sınıf vardır:
class TestClass
{
var $testvar;
public function __construct()
{
$this->$testvar = "Hullo";
echo($this->$testvar);
}
}
Ve erişmek için bu yöntem:
function getCurrent()
{
$gen = new TestClass();
}
Ben şu hatayı alıyorum:
Notice: Undefined variable: testvar in /Users/myuser/Sites/codebase/functions.php on line 28
Fatal error: Cannot access empty property in /Users/myuser/Sites/codebase/functions.php on line 28
Ne oluyor?