将原始(二进制?)图像数据插入mysql? (PHP)
我有一个像这样的原始/(二进制?)图像:
ÿØÿà�JFIF��–�–�*!!!$'$ &(goes on forever);
当我尝试将其插入 mysql 时它不起作用,列类型设置为 longblob,有什么想法吗?
I've got a raw/(binary?) image like this:
ÿØÿà�JFIF��–�–�*!!!
when i try to insert this into mysql it doesn't work, the column type is set to longblob, any ideas?
$ &(goes on forever);
when i try to insert this into mysql it doesn't work, the column type is set to longblob, any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
mysql_real_escape_string
用于 php_mysqlmysqli_real_escape_string
或为 php_mysqli 准备语句mysql_real_escape_string
for php_mysqlmysqli_real_escape_string
or prepare statement for php_mysqli我认为您需要在插入数据库之前使用
mysql_real_escape_string
来转义。I think you need to escape that using
mysql_real_escape_string
before inserting into the database.