Tag: inheritance
How to Inherit from Multiple Objects (Workaround)
By Server-Side Magazine on December 12th, 2008 | 11 Comments
As you may know, inheriting from multiple objects in PHP 5 is impossible, because of the language restrictions. You can’t write code such as this:
1 2 3 | class Child extends Mother, Father { //class code here } |