标签:htm echo 子类 html parent header 基类 extends self
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();
标签:htm echo 子类 html parent header 基类 extends self
原文地址:http://www.cnblogs.com/ayanboke/p/6555329.html