将图像文件添加到数据库表中
如何将图像文件添加到 mysql 表。我是一名程序员,我正在使用 php 和 mysql。
how to add image file/s to mysql table.I am a programmer I am using php and mysql.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您不应该为网站添加图像本身。您将图像上传到服务器,然后将路径保存到数据库中。然后您应该能够将文件的路径输出为 HTML。
You shouldn't add the image itself for websites. You upload the image to the server and then save the path into the database. You should be able to then output the path of the file to HTML.
您需要使用
blob
(或mediumblob
或longblob
,具体取决于您要支持的图像的最大大小)数据类型来存储二进制数据。插入之前,请务必对二进制图像数据中的特殊字符进行转义。
You need to use
blob
(ormediumblob
orlongblob
depending on the maximum size of images you want to support) data type for storing binary data.Before inserting, be sure to escape special characters in the binary image data.
我通常存储图像文件的 url 而不是文件本身(不太确定你会如何做到这一点)。我建议存储 url 并使用
I usually store the url of the image file rather than the file itself (not too sure how you would do that anyway). I recommend storing the url and using