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