Possible Duplicate:
PHP: self vs this and When to use self over $this
What's the difference between $this
and self::
example:
class Object{
public $property;
function doSomething(){
// This
$something = $this->property;
// Self
$something = self::property;
...code...
}
}