(1).self是參照到目前的class,$this是參照到目前的object ( 已經被宣告的實體上 )
(2).self 可使用在static上,$this不行
static method 因為沒有物件的實體,所以需要注意不可以使用 $this ,要用self::
可以直接存取 static method ( 如self::method() ),但是無法直接存取 static property 中的預先宣告的值
(3). 可用 new self() 呼叫自己
以下是(1)的範例:
<? |