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...
}
}