Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个页面,显示存储在我的名为“festival”的数据库的“store”表中的所有图像,并将它们呈现在 HTMl 表中。我数据库中的图像存储为 BLOB。
首先,您必须查询所有图像。然后您可以显示保存为 blob 的图像,如下所示:
echo '<img src="data:image/jpeg;base64,' . base64_encode( $blobimage ) . '" />';
$blobimage包含数据库中图像的变量在哪里
$blobimage