Which keyword is used to refer to the current instance of a class?
PHP is not object orient.
Me.
$Me.
$this.
Feedback: Object orient is supported starting PHP5. The $this keyword is used to refer to the current instance of a class.
Feedback: