What is the difference between Multiple Inheritance and Polymorphism?
In a Book I red a line saying
there is no support for multiple inheritances at class level. This means you can't extend more than one class at a time.
Which is contradicting the concept of Polymorphism, described in the same book as
polymorphism is the process of creating several objects from specific base classes
Now if Multiple Inheritance is not allowed in PHP then how the Polymorphism is allowed?