Is Dynamic Polymorphism in PHP is supported like template classes or is the only way in using Polymorphism in PHP is abstract functions and overloading/overriding ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
This should enlighten you: http://net.tutsplus.com/tutorials/php/understanding-and-applying-polymorphism-in-php/ |
|||
|
|
|
There is nothing like Template Classes, but you can very much achieve different runtime behavior through the use Abstract Classes and Interfaces as well as the utilization of Design Patterns like State, Decorator, Strategy and others. related: Is what seems like polymorphism in PHP really polymorphism? |
|||
|
|
|
You can use interfaces to add common functionality to classes. You can of course also override specific functions and extend classes as well. The most common way that I polymorph the functionality of my classes is starting with a base (template) class and extending it for each fork in its usage tree. |
|||
|
|