class Action{
public function __construct()
{
echo 'hello Action';
}
}
class IndexAction extends Action{
public function __construct()
{
echo 'hello IndexAction';
}
}
$test = new IndexAction;
//output --- hello IndexAction
很明显初始化子类IndexAction的时候会调用自己的构造器,所以输出是'hello IndexAction'。class IndexAction extends Action{
public function __initialize()
{
echo 'hello IndexAction';
}
}
那么输出的是'hello Action'。因为子类IndexAction没有自己的构造器。class IndexAction extends Action{
public function __construct()
{
parent::__construct();
echo 'hello IndexAction';
}
}
这样就可以将两句话同时输出。class Action{
public function __construct()
{
if(method_exists($this,'hello'))
{
$this -> hello();
}
echo 'hello Action';
}
}
class IndexAction extends Action{
public function hello()
{
echo 'hello IndexAction';
}
}
这样也可以将两句话同时输出。test.rar ( 324 B 下载:61 次 )