在 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中文网其他相关文章!