首頁 >資料庫 >mysql教程 >如何在 PHP 中顯示 MySQL BLOB 映像?

如何在 PHP 中顯示 MySQL BLOB 映像?

Linda Hamilton
Linda Hamilton原創
2024-12-13 06:16:11146瀏覽

How to Display MySQL BLOB Images in PHP?

從MySQL 顯示PHP BLOB 影像

背景

在MySQL 資料庫中將影像作為二進位大物件(BLOB) 儲存和擷取是一種常見技術。然而,顯示這些圖像有時可能會很困難。

解決方案

插入映像:

  1. 使用 file_get_contents 函數讀取映像檔到變數中。
  2. 使用PREPARED 語句將影像資料插入資料庫的BLOB 欄位:
$query = "INSERT INTO products (image) VALUES(?)";
$stmt = $db->prepare($query);
$stmt->bind_param('s', $image);
$stmt->execute();

顯示影像:

  1. 顯示影像:
$query = "SELECT * FROM products WHERE id = ?";
$stmt = $db->prepare($query);
$stmt->bind_param('s', $id);
$stmt->execute();
$result = $stmt->get_result();
$row = $result->fetch_array();
    使用PREPARED從資料庫擷取影像資料語句:
echo '<img src="data:image/jpeg;base64,' . base64_encode($row['image']) . '"/>';
使用 base64_encode 對影像資料進行編碼並顯示為 如何在 PHP 中顯示 MySQL BLOB 映像?標籤:

以上是如何在 PHP 中顯示 MySQL BLOB 映像?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn