InterviewSolution
Saved Bookmarks
| 1. |
What is inheritance in PHP? How many types of inheritance supports PHP? |
|
Answer» Inheritance has THREE types, are given below.
But PHP supports only single inheritance, where only ONE class can be DERIVED from a single parent class. We can do the same thing as multiple inheritances by USING interfaces. Note: Before getting confused with the plethora of PHP interview QUESTIONS for experienced, you need to ensure the basics. This question will help you to understand the core basics of php and make you even more confident enough to jump onto the advanced questions. |
|