为什么 mysqli fetch() 从长文本列返回空结果?
由于某种原因 mysqli $query -> fetch();
返回空白,我的 mysql 表中的长文本列?
有什么想法吗?我将列设置为 text
,效果很好。它在我的 WAMP 服务器上也运行良好,但当我将其放到生产服务器上时,它只返回空白。两个系统都运行 php 5.3.5
For some reason mysqli $query -> fetch();
returns blank, the columns that are longtext in my mysql table?
Any ideas? I set the columns to text
, it works fine. It also works fine on my WAMP server, but when I put it up to the production server it just returns blanks. Both systems are running php 5.3.5
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过使用
$mysqli->query()
和$result->fetch_object()
?同样的问题?
Have you tried using
$mysqli->query()
and$result->fetch_object()
?Same problem?