将原始(二进制?)图像数据插入mysql? (PHP)

发布于 2024-08-04 11:34:16 字数 154 浏览 4 评论 0原文

我有一个像这样的原始/(二进制?)图像:

ÿØÿà�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 技术交流群。

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

发布评论

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

评论(2

笑红尘 2024-08-11 11:34:17

mysql_real_escape_string 用于 php_mysql
mysqli_real_escape_string 或为 php_mysqli 准备语句

mysql_real_escape_string for php_mysql
mysqli_real_escape_string or prepare statement for php_mysqli

一抹微笑 2024-08-11 11:34:16

我认为您需要在插入数据库之前使用 mysql_real_escape_string 来转义。

I think you need to escape that using mysql_real_escape_string before inserting into the database.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文