PHP的file_exists()对我不起作用?
2022-08-30 11:17:16
由于某种原因,下面的PHP代码将不起作用,我无法弄清楚。
这很奇怪,file_exists似乎没有看到图像确实存在,我已经检查以确保将一个好的文件路径插入到file_exists函数中,并且它仍在运行
如果我file_exists更改为!file_exists它将返回存在的图像和不存在的图像
define('SITE_PATH2', 'http://localhost/');
$noimg = SITE_PATH2. 'images/userphoto/noimagesmall.jpg';
$thumb_name = 'http://localhost/images/userphoto/1/2/2/59874a886a0356abc1_thumb9.jpg';
if (file_exists($thumb_name)) {
$img_name = $thumb_name;
}else{
$img_name = $noimg;
}
echo $img_name;