我有一些这样设置的类,其中 -> 表示“扩展”:
DBObject -> Article -> Activity
DBObject
包含一个泛型__construct
,可以轻松地从数据库中加载我的对象(因此DataBaseObject
)。
Article
覆盖 this __construct
,用于一些特殊的构造函数行为。
Activity
不实现 any __construct
,因为它可以由它的超类' __construct
( Article::__construct
) 处理。
但是,由于某种原因,如果我打电话
$activity = new Activity($args);
它以 结尾DBObject::__construct
,并一起通过了 Article 的。我一直认为对子类的调用应该一次一个类地沿着子类线路上行。我这样想错了吗?
编辑:这是一个代码片段: http: //pastebin.com/SXpSNVMm。我删除了所有不必要的代码。我这样称呼它:
$userId = 60;
$title = "TestTitle";
$contents = "Lorem ipsum dolor sit amet";
$date = 1356173771;
echo "creating new activity\n";
$a = new Activity($userId, $title, $contents, $date);
将 echo 放置在构造函数中显示Article::__construct()
未使用它,它直接到DBObject::__construct()
.
编辑 2:这是一个应该可以正常工作的版本:http: //ideone.com/VJzdI3。我正在使用 PHPUnit 进行测试。如果我使用 PHPUnit 运行,这是输出:
creating new activity
DBObject constructed called
QUERY: 60 ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '60' at line 1
后者意味着它正在尝试使用 meekrodb 对其进行初始化;只有当我使用数组new
以外的东西调用 DBObject 的子类时,才会发生这种情况。null
但是,由于 Article 应该覆盖 __construct,所以应该首先调用它。