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.
在渲染图像文件时我有哪些选择?假设我有一个保存在 foo/bar.png
目前我知道我可以使用readfile()或更好,X-Sendfile(我在 Apache 上)。还有哪些比使用更好的方法readfile()呢?
readfile()
X-Sendfile
我想将图像输出到浏览器(Content-Type: image/png)
最好的解决方案是让您的网络服务器 (Apache) 自己提供内容。如果必须改用 PHP,您只需确保首先将 Content-Type 设置为适当的值:
header("Content-type: image/png");
然后用于readfile()发送图像本身。