在windows中显示php图像的问题
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您保存为 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.