首页 > 后端开发 > php教程 > 如何在 PHP 中显示使用 `file_get_contents` 检索到的图像?

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

Patricia Arquette
发布: 2024-10-29 19:51:02
原创
601 人浏览过

How to Display Images Retrieved with `file_get_contents` in PHP?

在 PHP 中显示使用 file_get_contents 检索的图像

在 PHP 中,您可以使用 file_get_contents 函数检索远程图像。但是,要在网页上显示这些图像,您需要采取额外的步骤。

解决方案:

可以使用 PHP 的 readfile() 函数来输出图像直接到浏览器。在此之前,您需要使用 getimagesize() 设置正确的图像标题。

<code class="php"><?php

$remoteImage = "http://www.example.com/gifs/logo.gif";

// Get image information
$imginfo = getimagesize($remoteImage);

// Set image headers
header("Content-type: {$imginfo['mime']}");

// Output the image to the browser
readfile($remoteImage);
?></code>
登录后复制

说明:

getimagesize() 检索图像的大小和 mime 类型.

header() 设置必要的图像标题,例如 Content-type,它指定图像的类型(例如“image/gif”)。

readfile() 输出图像直接到输出缓冲区,与使用 file_get_contents 相比减少了内存消耗。

以上是如何在 PHP 中显示使用 `file_get_contents` 检索到的图像?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板