在 PHP 中获取 BLOB 列时出现问题 MySQLi
这是代码:
$conn = new mysqli('localhost', 'user', 'password', 'db');
$stmt = $conn->prepare('select Data from sessions');
$stmt->execute();
$x = 234;
$stmt->bind_result($x);
$stmt->fetch();
var_dump($x);
输出:
字符串“”(长度=0)
事实上,该表仅包含一行,并且 blob 列包含一些有效的 ASCII 字符数据(一个 serialize()
d PHP 整数)。
为什么会这样呢?
撞。
Here's the code:
$conn = new mysqli('localhost', 'user', 'password', 'db');
$stmt = $conn->prepare('select Data from sessions');
$stmt->execute();
$x = 234;
$stmt->bind_result($x);
$stmt->fetch();
var_dump($x);
This outputs:
string '' (length=0)
In fact the table contains exactly one row and the blob column contains some valid ASCII character data (a serialize()
d PHP integer).
Why is this so?
Bump.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MySQLi 可能不喜欢将 BLOB 数据放入 PHP 变量中。 如果您只需要存储 ASCII 数据,则应使用专为存储 ASCII 设计的列类型。
MySQLi probably doesn't like putting BLOB data into PHP variables. If you just need to store ASCII data, you should use a column type that's designed to store ASCII.