关于oop:在php中self和$this有什么区别?

What is the difference between self and $this in php?

本问题已经有最佳答案,请猛点这里访问。

$thisself有什么区别?我们什么时候应该使用它们?


$this是指当前实例。self表示当前类。

换句话说,您可以使用$this->someMember引用实例成员,使用self::$someStaticMember引用静态成员。


$this指向当前对象,其中self::指向当前类。