PHP: Bu ve Öz [yinelenen]

0 Cevap php

Possible Duplicate:
PHP: self vs this

$this ve self:: arasındaki fark nedir

Örnek:

class Object{
   public $property;
   function doSomething(){
        // This
        $something = $this->property;
        // Self
        $something = self::property;
        ...code...
   }
}

0 Cevap