检查目标文件夹中是否存在特定图像名称

时间:2014-07-04 06:17:33

标签: php html

我正在保存此人的详细信息以及他们的个人资料图片,该图片已重命名为他们的电话号码。当我打开人员详细信息时,如何检查目标文件夹中是否存在具有特定名称的图像。 示例代码。
$img_src='subscriber_img/'.$response[sub_Phone]; <img src="<?php echo $img_src?>.jpg" class="sub_detail_pic_img" /> 因此,如果图像源为空,我可以将虚拟图像添加到html src =“”。 另外如何将图像延伸为

1 个答案:

答案 0 :(得分:1)

使用以下代码检测提供的输入是否存在图像。     

if (file_exists($filename)) {
  $img_src = $filename;
} else {
  $img_src = "dummy.jpg";
}
?>
<img src="<?php echo $img_src?>" class="sub_detail_pic_img" />