multiple class inheritance

Posted by redcoder on Stack Overflow See other posts from Stack Overflow or by redcoder
Published on 2010-04-08T19:05:23Z Indexed on 2010/05/12 4:24 UTC
Read the original article Hit count: 278

Filed under:
|
|

In PHP, is it possible to have multiple inheritance (by the nature of the PHP, not writting modification code) ?

example : class a { public function foo(); }

class b { public function bar(); }

class c extends a, b { public function baz(); }

© Stack Overflow or respective owner

Related posts about php

Related posts about multiple