"Wee Chua" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi all,
> How many extension of subclass can PHP have? Can I extend subclass to more
> different subclass?

I didn't really understand the question, but maybe this is it.
PHP class can extend only one parent class. i.e.

class Foo extends Bar {
} file://is ok

whereas

class Foo extends Bar,Cafe {
} file://does not work but maybe will in Zend 2.0 engine

Roko



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to