vote up 0 vote down star

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();
flag

retagged to oop since it's not php5 specific – Nicky De Maeyer Nov 6 at 8:17

2 Answers

vote up 6 vote down check

In PHP (unlike C++, for example), you need to use $this->ClearError() in order to call a method on the class. ClearError() calls the global function ClearError().

link|flag
2  
By the way, some of my PHP developer friends are horrified that you can call the method without the this keyword in other languages. Of course, my C# & Java friends are horrified that there are global functions. – notJim Nov 6 at 8:17
i use this.method() in Java (actually this.property way more) because it lets me very easily not mix up class and local properties. – seanmonstar Nov 6 at 8:23
vote up 1 vote down

$this->ClearError();

Refers to the Function inside the Class.

return ClearError()

Calls the function which you defined outside the class of defined seperatly.

Class Demo {

function _construct() { $this -> ClearError(); // refers function inside the class

}

function ClearError() {

return ClearError(); // refers outside the classs

}

}

function ClearError() {

contents

}

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.