PDO 的 FETCH_INTO $这个类不起作用

发布于 2024-09-10 09:39:04 字数 488 浏览 2 评论 0原文

我想使用 PDO 的 FETCH_INTO 构造函数填充类:

class user
{
    private $db;
    private $name;

    function __construct($id)
    {
        $this->db = ...;

        $q = $this->db->prepare("SELECT name FROM users WHERE id = ?");
        $q->setFetchMode(PDO::FETCH_INTO, $this);
        $q->execute(array($id));

        echo $this->name;
    }
}

这不起作用。没有错误,只是什么都没有。脚本没有错误,FETCH_ASSOC 工作正常。

FETCH_INTO 有什么问题?

I want to populate class with constructor using FETCH_INTO of PDO:

class user
{
    private $db;
    private $name;

    function __construct($id)
    {
        $this->db = ...;

        $q = $this->db->prepare("SELECT name FROM users WHERE id = ?");
        $q->setFetchMode(PDO::FETCH_INTO, $this);
        $q->execute(array($id));

        echo $this->name;
    }
}

This does not work. No error, just nothing. Script has no errors, FETCH_ASSOC works fine.

What is wrong with FETCH_INTO?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诺曦 2024-09-17 09:39:04

你的代码中有两个错误:

1)你忘记了 $q->fetch()

 ...
 $q->execute(array($id));
 $q->fetch(); // This line is required

2) 但即使添加 $q->fetch() 你也会得到这个:

致命错误:无法访问私有
属性 User::$name in ...

因此,正如您所看到的,即使在类方法内部调用,PDO 也无法访问私有成员。

这是我的解决方案:

...
$q->execute(array($id));
$q->setFetchMode(PDO::FETCH_ASSOC);
$data = $q->fetch();
foreach ($data as $propName => $propValue)
{
    // here you can add check if class property exists if you don't want to
    // add another properties with public visibility
    $this->{$propName} = $propValue;
}

You have two errors in your code:

1) You forgot $q->fetch()

 ...
 $q->execute(array($id));
 $q->fetch(); // This line is required

2) But even after adding $q->fetch() you'll get this:

Fatal error: Cannot access private
property User::$name in ...

So, as you can see, PDO cannot access private members even if it is called inside class method.

Here is my solution:

...
$q->execute(array($id));
$q->setFetchMode(PDO::FETCH_ASSOC);
$data = $q->fetch();
foreach ($data as $propName => $propValue)
{
    // here you can add check if class property exists if you don't want to
    // add another properties with public visibility
    $this->{$propName} = $propValue;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文