Types of inheritance in PHP:
- Inheritance has three type, single, multiple and multi level inheritance.
- It supports only single inheritance, where only one class can be derived from single parent class.
- We can simulate multiple inheritance by using interfaces.
For Example :