使用 mysql/php 检查 blob(image) 是否存在
我从 mysql 获取 blob 数据。 以及如何使用 php 检查 blob 数据是否存在。
if (image exists)
{
#Do some operation
}
else
{
#Do some operation
}
I get the blob data from mysql.
And how to check the blob data is existing or not using php.
if (image exists)
{
#Do some operation
}
else
{
#Do some operation
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许只是比较获取的 blob 列是否不为 null ?
Maybe just compare if fetched blob column is not null ?