RE: [PHP] Extending classes multiple times

2001-12-06 Thread Matt Friedman
[PHP] Extending classes multiple times I am not very sure what your question is, but "multiple inheritance" means that a derived class can inherit (i.e., be derived from) more than one class. In multiple inhericance, you can have: A B | | +---+---+ |

Re: [PHP] Extending classes multiple times

2001-12-06 Thread Harshdeep S Jawanda
I am not very sure what your question is, but "multiple inheritance" means that a derived class can inherit (i.e., be derived from) more than one class. In multiple inhericance, you can have: A B | | +---+---+ | C Here, C is simultaneously derived from A

Re: [PHP] Extending classes multiple times

2001-12-06 Thread Rasmus Lerdorf
> I had been under the impression that one could extend a class only once. > That is, if I extend class A with class B I would then not be able to > extend B again with any other class. > > See: http://www.php.net/manual/en/keyword.extends.php > "An extended class is always dependent on a single