标签:
php是单重继承的。一个类只有一个父类。
但是可以通过接口实现多重继承。
定义了一个接口,接口中有方法,假如接口给类去implements了,那么那个类需要有接口的方法。就像下面的代码
<?php interface d{ function b(); } class a implements d{ function b(){} } ?>
但是,如果a的类里面没有function b,就会报错
Fatal error: Class a contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (d::b) in E:\php\WWW\demo.php on line 6
标签:
原文地址:http://www.cnblogs.com/wz0107/p/5392722.html