Server-Side Magazine

Tag: class

How to Inherit from Multiple Objects (Workaround)

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
}

Continue Reading →

Page 2 of 212