PDO#39;s FETCH_INTO $this class does not work(PDO 的 FETCH_INTO $这个类不起作用)
问题描述
我想使用 PDO 的 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;
}
}
这不起作用.没有错误,只是没有.脚本没有错误,FETCH_ASSOC
工作正常.
This does not work. No error, just nothing. Script has no errors, FETCH_ASSOC
works fine.
FETCH_INTO
有什么问题?
推荐答案
您的代码中有两个错误:
You have two errors in your code:
1) 你忘记了 $q->fetch()
1) You forgot $q->fetch()
...
$q->execute(array($id));
$q->fetch(); // This line is required
2) 但即使在添加 $q->fetch() 之后你也会得到这个:
2) But even after adding $q->fetch() you'll get this:
致命错误:无法访问私有属性 User::$name in ...
Fatal error: Cannot access private property User::$name in ...
因此,如您所见,即使在类方法内部调用 PDO,它也无法访问私有成员.
So, as you can see, PDO cannot access private members even if it is called inside class method.
这是我的解决方案:
...
$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;
}
这篇关于PDO 的 FETCH_INTO $这个类不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PDO 的 FETCH_INTO $这个类不起作用
基础教程推荐
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 使用 PDO 转义列名 2021-01-01