InterviewSolution
Saved Bookmarks
| 1. |
Type of inheritance that php supports |
|
Answer» In PHP an extended class is ALWAYS dependent on a single base class, that is, MULTIPLE inheritance is not supported. CLASSES are extended using the keyword 'extends'. |
|