Which keyword is used to refer to properties or methods within the class itself?
Which keyword is used to refer to properties or methods within the class itself? 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.