This article mainly shares with you about PHP object-oriented inheritance constructor. Friends who need it can take a look.
Inheritance of constructor methods
Constructor methods can be inherited, and the principles of inheritance are the same as ordinary methods. Furthermore, if the subclass also When a constructor is declared, the constructor of the parent class will be overwritten. If the constructor of the parent class is overwritten, naturally, only the new constructor in the subclass will be executed.
// === Code part 1 ===
class Human { public function __construct() { echo '呱呱坠地!<br >'; } }class Stu extends Human {}$ming = new Stu(); // 呱呱坠地!// 这说明构造函数也是可以继承的
// ===Code part 2===
class Emperor extends Human { public function __construct() { echo '红光满屋,终日不散<br >'; } }$zhu = new Emperor();echo '<hr >';
// ===Notes part===
/*
If there is a constructor when inheriting from a subclass,
add a sentence to the constructor:
parent::__construct();
Then write your own business Logic.
*/
Related recommendations:
Principles of constructors during inheritance
Javascript object-oriented non-constructor inheritance
Constructor and destructor in PHP object-oriented function
The above is the detailed content of PHP object-oriented inheritance constructor. For more information, please follow other related articles on the PHP Chinese website!