How is multilevel inheritance implemented in PHP using PHP magic methods?

I was asked in an interview "how will you implement multilevel inheritance using magic methods".

So I am eager to know about this.

Thx.

link|improve this question

60% accept rate
2 vote downs ??? Any reason guys? – Jatin Dhoot May 30 '11 at 7:48
feedback

1 Answer

It's not clear whether you mean "how does one use multilevel inheritance?" or "how is it implemented inside the PHP interpreter?". If it's the former, then as follows:

class Animal
{
    ...
}

class Cat extends Animal
{
    ...
}

class Tiger extends Cat
{
    ...
}

If it's the latter, then I'm not sure it's possible to give a reasonable explanation in a few paragraphs here!

link|improve this answer
Thx for the reply ude. But I heard elsewhere that usage of magic functions is involved while implementing multilevel inheritance. Thats why I posted this question? Are you aware of such implementation? – Jatin Dhoot May 29 '11 at 16:14
3  
@Jatin: Where did you hear that? Can you provide a link? It's kind of hard to answer that without knowing the context! – Oli Charlesworth May 29 '11 at 16:17
@Jatin: In case you meant multiple inheritance (not "multilevel"), then no, that's not available natively in PHP. But you heard right, there are a few workarounds using magic methods to simulate MI (related: "mixins"). But they are not very suitable for all purposes and don't come close to proper MI as in other languages. – mario May 29 '11 at 16:40
Thanks mario for your insight – Jatin Dhoot May 31 '11 at 4:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.