php中的self和$this有什么区别


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

$thisself有什么区别?我们什么时候应该使用它们中的每一个?

>$this引用当前实例self是指当前

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

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