PHP readfile 用于强制下载文件和图像

发布于 2024-08-28 05:52:08 字数 174 浏览 10 评论 0原文

我想使用 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 技术交流群。

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

发布评论

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

评论(1

╰ゝ天使的微笑 2024-09-04 05:52:08

您需要使用 header() 函数设置 MIME 类型。评论里应该有信息。像这样的东西:

<?php
header('Content-type: image/png'); 
?>

You need to set the MIME type with the header() function. There should be info in the comments. Something like:

<?php
header('Content-type: image/png'); 
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文