我在 CakePHP 中有一个项目,如果不使用扩展名 '.JPG',我想知道如何检查扩展名为 '.jpg' 的图像是否存在,任何帮助将不胜感激。
问问题
3902 次
3 回答
2
bool file_exists ( 字符串 $filename )
检查文件或目录是否存在。如果 filename 指定的文件或目录存在,则返回 TRUE;否则为假。
于 2012-06-12T00:24:48.627 回答
1
$file = WWW_ROOT . 'img' . DS . 'uploads' . DS . 'file123.jpg';
于 2017-09-27T05:01:39.920 回答
0
我的图像路径,如 app/webroot/img/upload/file123.jpg
WWW_ROOT 定义您的 webroot 文件夹路径,DS 定义 '/'
$image='file123.jpg';
$file = WWW_ROOT . 'img' . DS . 'uploads' . DS . $image;
if 文件检查条件
if(file_exists($file) && $image){
enter your code if file exists
}else{
file not exists
}
于 2017-09-28T11:37:38.610 回答