如a.php一个class a类:
代码如下:
<?php class a{ function construct(){ echo 'class a'; } }
b.php有个class b类继承a类:
代码如下:
<?php include 'a.php'; class b extends a{ function construct(){ echo '666666'; //parent::construct(); } function index(){ echo 'index'; } } $test=new b();
这样写的话,b类有自己的构造函数,那么实例化b类的时候,自动运行构造函数,此时默认不运行父类的构造函数,如果同时要运行父类构造函数,要声明parent::construct();
代码如下:
<?php include 'a.php'; class b extends a{ function index(){ echo 'index'; } } $test=new b();
此时b类没有自己的构造函数,那么将默认执行父类的构造函数。
以上就是关于php构造函数的详细介绍的详细内容,更多请关注二当家的素材网其它相关文章!
友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群