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.
我正在使用 MongoDB 和 GridFS,但我希望能够将其包含在名为 display 的页面上的图像标记中,getimage.php 是从 Mongo 获取图像的页面,例如<img src='getimage.php' height='100px' width='100px'>
<img src='getimage.php' height='100px' width='100px'>
这是可能的吗?如果是这样,这将是什么?
仅使用getimage.php是不够的。您还应该为要检索的图像提供标识符。这样,您可以将此技术用于无限数量的图像。
getimage.php
<img src='getimage.php?oid=4rf55...' height='100px' width='100px'>
如果您使用文件 OID,您可以轻松地从 GridFS 获取图像。您只需根据paramgetimage.php提供的值获取图像。oid=....$oid = $_GET['oid']
oid=....
$oid = $_GET['oid']