4

PDO::FETCH_CLASS允许使用预先填充的数据初始化类实例。它看起来像这样:

<?php
class Bar {
    private $data = [];

    public function __construct ($is) {
        // $is === 'test'
        // $this->data === ['foo' => 1, 'bar' => 1]
    }

    public function __set($name, $value) {
        $this->data[$name] = $value;
    }
}

$db
    ->query("SELECT `foo`, `bar` FROM `qux`;")
    ->fetchAll(PDO::FETCH_CLASS, 'Bar', ['test']);

或者,可以PDO::FETCH_PROPS_LATE在触发 setter 之前调用构造函数。

我很想知道 PDO 如何在调用构造函数之前设法通过 setter 填充 Class 实例,或者更具体地说,是否有办法复制这种行为?

4

2 回答 2

5

在 PHP 5.4+ 中可以使用ReflectionClass::newInstanceWithoutConstructor来做到这一点。

于 2013-03-04T10:31:42.510 回答
0

为此,我这样做:

我在我的超类中声明了这个神奇的方法

  public function __set($name, $value) {
    $method = 'set' . str_replace('_', '', $name); //If the properties have '_' and method not
    if (method_exists($this, $method)) {
        $val = call_user_func(array($this, $method), $value);
    }
}

它对我很有效

于 2014-11-21T21:55:04.733 回答