Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 ALL


  PHP function overloading puzzle clearer

PHP's meaning of overloading is different than Java's. In PHP, overloading means that you are able to add object members at runtime, by implementing some of the __magic methods, like __get, __set, __call, __callStatic. You load objects with new members. Overloading in PHP provides means to dynamically "create" properties and methods. These dynamic entities are processed via magic methods one can establish in a class for various action types.Some example:class Foo{    public function __call($method, $args)    {        echo "Called method $method";&n...

3,788 0       PHP OOP FUNCTION OVERLOADING DEFAULT VAL