PHP Class 两次继承,实例化两次, 祖先级__construct 执行几次?

2019-01-20 21:58:59 +08:00
 aloyuu

calss db 使用 __construct 连接数据库,返回 pdo 对象变量

class base extends db

class list extends base

$aaa = new base(); ........... .............

$bbb = new list(); ........... .............

实例化两个类. db 中的 __construct 会被执行几次?

1393 次点击
所在节点    问与答
3 条回复
imdong
2019-01-21 09:36:56 +08:00


看图说话
zgxxx
2019-01-21 10:15:23 +08:00
0 次,每次继承。上一个构造函数都会被覆写,建议百度下 parent::__construct
stephanew
2019-01-21 10:22:03 +08:00
一楼都重写了,还不加 parent::_construct 当然不会执行了

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/528906

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX