- 1
Multiple Inheritence supported in php ?
2 Answers
0
No, but it does provide some ease to reuse sets of methods in multiple independent classes, using traits. A trait is written just like a class, but it cannot be instantiated by itself.
0
https://www.php.net/manual/en/language.oop5.traits.php
... could maybe help ;)