Which keyword is used to refer to properties or methods within the class itself?
A
private
B
public
C
protected
D
$this
Correct Answer: $this
In PHP, the self and ‘this’ keyword are used to refer the class members within the scope of a class itself. The class members can be either variables or functions.