Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 readfile() 通过 php 发送文件
我注意到的是 readfile 强制下载,但是如果我想在浏览器中显示图像而不强制下载怎么办?
即使文件是图像,readfile 仍然会强制下载吗?
如果是这样,是否有解决方案,以便当文件是图像时我可以使用标签?
谢谢!
您需要使用header()函数设置 MIME 类型。评论里应该有信息。就像是:
<?php header('Content-type: image/png'); ?>