问题描述
有什么方法可以将PDO的结果作为构造函数的参数传递?假设我有以下课程:
Is there any way, to pass results of PDO as parameters of the constructor?Let's say, I have the following class:
class Test
{
private $value1;
private $value2;
function __construct($val1, $val2)
{
$this->value1 = $val1; $this->value2 = $val2;
}
}
然后,通过PDO驱动程序,我从数据库中选择一些数据,比如:
Then, via PDO driver I select some data from DB, let's say:
SELECT price, quantity FROM stock
$results = $query->fetchAll(PDO::FETCH_CLASS|PDO::FETCH_PROPS_LATE, "Test");
现在,PDO将这些值直接传递到类字段,并绕过构造函数.
Right now, PDO passess these values directly to the class fields, and bypassing the constructor.
也许我遗漏了一些东西,但是我想将查询的结果传递给构造函数.构造函数不能依赖于查询,即使不使用PDO,我也希望能够实例化此类.
Maybe I am missing something, but I want to pass results from the query to the constructor.Constructor cannot be query-dependent, I want to be able to instantiate this class even without using PDO.
推荐答案
[我编辑了此答案,因为以前的答案不再正确.]
[I edited this answer as my previous answer is not accurate anymore.]
FETCH_CLASS确实可以获取私有属性.请参阅这个答案.
FETCH_CLASS does fetch into private properties. Please refer to this answer.
这篇关于PDO-FETCH_CLASS-将结果作为参数传递给构造函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!