欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

简单实现PHP5多重继承

程序员文章站 2022-06-14 10:33:58
...
在通过对以下为PHP5多重继承的具体代码:

  1. //PHP5 接口 ---跟 JAVA一个鸟样~ 晕
  2. interface IFOne{
  3. function getName();
  4. }
  5. interface IFTwo{
  6. function getID();
  7. }
  8. //PHP 抽象类
  9. abstract class AbsClsOne{
  10. var $name;
  11. function setName($name){
  12. $this->name=$name;