gpt4 book ai didi

php - 使用 file_get_contents 显示图像

转载 作者:IT王子 更新时间:2023-10-29 00:55:12 25 4
gpt4 key购买 nike

如何在 php 中显示使用 file_get_contents 检索到的图像?

我是否需要修改 header 并仅回显它或其他内容?

谢谢!

最佳答案

您可以使用 readfile并输出您可以从 getimagesize 获得的图像标题像这样:

$remoteImage = "http://www.example.com/gifs/logo.gif";
$imginfo = getimagesize($remoteImage);
header("Content-type: {$imginfo['mime']}");
readfile($remoteImage);

你应该在这里使用 readfile 的原因是它将文件直接输出到输出缓冲区,其中 file_get_contents会将文件读入内存,这在此内容中是不必要的,并且对于大文件来说可能很密集。

关于php - 使用 file_get_contents 显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4286677/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com