In PHP 5, what is the difference between using self and $this?
self
$this
When is each appropriate?
Here is an example of correct usage of $this and self for non-static and static member variables:
non_static_member . ' ' . self::$static_member; } } new X(); ?>