PHP readfile 用于强制下载文件和图像
我想使用 readfile() 通过 php 发送文件
我注意到 readfile 强制下载,但是如果我想在浏览器中显示图像而不强制下载怎么办?
即使文件是图像,readfile 仍然会强制下载吗?
如果是这样,是否有解决方案,以便当文件是图像时我可以使用标签?
谢谢!
I want to send files through php using readfile()
What i've noticed is that readfile forces a download, but what if i want to show an image in the browser and not force a download?
Would readfile still force download even if the file is an image?
If it does, is there a solution so i can use tags with it when the file is an image?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 header() 函数设置 MIME 类型。评论里应该有信息。像这样的东西:
You need to set the MIME type with the header() function. There should be info in the comments. Something like: