首页 > 代码库 > php extends

php extends

header ("content-type:text/html;charset=utf-8");

class A{

  function __construct(){

    echo "基类的构造方法<br/>";

  }

}

class B extends A{

  function __construct(){

    parent::__construct();

    echo "子类B的构造方法<br/>";

    self::myfun();

  }

  function myfun(){

    echo "一个普通的方法:myfun()<br/>";

  }

}

$obj = new A();

$obj = new B();

 

php extends