在windows中显示php图像的问题

发布于 2024-11-30 08:07:31 字数 341 浏览 2 评论 0原文

我正在尝试使用 php 显示图像:

header("Content-type: image/jpeg");
header("Content-Transfer-Encoding: binary");
header('Content-length: '.filesize($IMAGE));
readfile($IMAGE);

但是,如果包含此代码块的 .php 文件保存为 utf-8(否则它可以工作),则图像不会显示在 WAMP 服务器上。我在 LAMP 服务器上测试了它,它可以工作。

我的问题是:如何在不更改文件字符集的情况下使其在 Windows 上工作?

谢谢

I'm trying to display an image using php:

header("Content-type: image/jpeg");
header("Content-Transfer-Encoding: binary");
header('Content-length: '.filesize($IMAGE));
readfile($IMAGE);

Bu the image is not showing up on a WAMP server if the .php file which contains this block of code is saved as utf-8 (otherwise it works). I tested it on a LAMP server and it works.

My question is: how can I make this work on windows without changing the charset of the file?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

似梦非梦 2024-12-07 08:07:31

如果您保存为 UTF-8 并使用记事本,请注意记事本将在文件开头放置一个 unicode BOM(字节顺序标记),这是 2 个字节的其他不可见数据。这会搞砸您的下载,因为 BOM 将计为输出。

If you're saving as UTF-8, and using Notepad, note that Notepad will put a unicode BOM (byte order marker) at the start of the file, which is 2 bytes of otherwise invisible data. This will screw up your download, as the BOM will count as output.

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