php – 如果数据库中没有特定图像,如何显示默认图像?

前端之家收集整理的这篇文章主要介绍了php – 如果数据库中没有特定图像,如何显示默认图像?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如果该图像在数据库中不可用,如何显示特定图像?我有

>数据库名称:项目
>表名:图片
> fields:id(int),file(varchar)[image url stored here],name(varchar)[image description]

PHP代码在这里:

PHP
$con=MysqL_connect("localhost","root","") or die("no connection ");
MysqL_select_db("project")or die("no database exit");
echo "

MysqL_query("SELECT * FROM image"); echo "MysqL_fetch_array($res)) { echo "PHP echo $row["file"]; ?>" height="100px" width="150px"> PHP echo "

最佳答案
只需使用@geignerize description w3school php.net,此方法将检查图像是否确实存在.如果从db或目标中删除图像,则返回false.

更新

为你的代码使用像这样

PHP
$con=MysqL_connect("localhost","") or die("no connection ");
MysqL_select_db("project")or die("no database exit");
echo "

MysqL_query("SELECT * FROM image"); echo "MysqL_fetch_array($res)) { $img=$row["file"]; //orginal image url from db if(!@getimagesize($img)) { $img="default image" //if image not found this will display } echo "PHP echo $img; ?>" height="100px" width="150px"> PHP echo "

原文链接:https://www.f2er.com/mysql/433680.html

猜你在找的MySQL相关文章