为什么我会收到错误:“在.........中不在对象上下文中时使用$ this”

时间:2012-06-19 22:24:49

标签: php oop this

$ title ='question';)在此先感谢,我似乎无法弄明白。

class myClass {

    public $myVar = 'hello';

    public function myMethod() {
        echo $this->myVar;
    }

}

1 个答案:

答案 0 :(得分:1)

你在做什么:

myClass::myMethod();

或者:

$foo = new myClass();
$foo->myMethod();