当前位置: 首页 > 工具软件 > Construct > 使用案例 >

php中的__construct()构造函数

权兴为
2023-12-01
__construct()是php内置的构造函数
注意事项:
  1. 若父类和子类 都有 __construct,则只调用子类的__construct,不会自动调用父类的__construct
  2. 子类的__construct方法如果要调用父类的__construct方法,必须在子类构造函数中调用父类的构造函数
parent::__construct(); // 子类中调用父类的构造函数
 类似资料: