type of inheritance in php
which type of inheritance su开发者_如何学运维pported in php?
Single inheritance, including abstract base classes and final methods, and multiple interfaces. Pretty much like Java.
Single Inheritance only. But you can inherit multiple levels deep.
See
- http://php.net/manual/en/language.oop5.inheritance.php
- http://www.java2s.com/Code/Php/Class/Inheritance.htm
精彩评论