InterviewSolution
Saved Bookmarks
| 1. |
What is 'This' key word? |
|
Answer» In PHP, the “This” keyword is a REFERENCE to a PHP object which has been created by the interpreter for the USER containing an array of variables. If “this” keyword is called inside a normal METHOD WITHIN a normal class, it RETURNS the object to the appropriate method. |
|