In some classes I see a call to a function is like:
$this->ClearError();
When the function is residing in that class itself. How is the above approach different from a direct function call like:
return ClearError();
|
|
|||
|
|
|
In PHP (unlike C++, for example), you need to use |
||||||
|
|
|
Refers to the Function inside the Class.
Calls the function which you defined outside the class of defined seperatly.
contents
|
||
|
|