首頁 > 後端開發 > php教程 > 如何在 PHP 中顯示使用 `file_get_contents` 檢索到的映像?

如何在 PHP 中顯示使用 `file_get_contents` 檢索到的映像?

Patricia Arquette
發布: 2024-10-29 19:51:02
原創
597 人瀏覽過

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
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板