InterviewSolution
Saved Bookmarks
| 1. |
What 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'. 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'. |
|