php调用父类构造方法是什么

php调用父类构造方法:首先父类先构造函数,代码为【public function __construct()】;然后使用【parent::__construct()】调用父类构造函数即可。

php调用父类构造方法:

一、使用函数【parent::__construct()】调用父类构造函数

代码如下;

<?php
class MyClass    //父类
{
    public function __construct()    //父类构造函数
{
    echo "父类的构造函数";
}
}
class ChildClass extends MyClass     //子类 
{
    public function __construct()    //子类构造函数
{
        echo "子类的构造函数"."<br>";
        parent::__construct();    //调用父类构造函数
    }
}
$childClass = new ChildClass();    //对类的实例化
?>

二、运行结果

子类的构造函数

父类的构造函数

相关学习推荐:php编程(视频)

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » php调用父类构造方法是什么