我在CakePHP有一个项目,我想知道如果没有使用扩展名'.jpg',如果图像是否存在扩展名'.jpg',任何帮助都将深受赞赏。
答案 0 :(得分:2)
bool file_exists(string $ filename)
检查文件或目录是否存在。如果filename指定的文件或目录存在,则返回TRUE;否则就错了。
答案 1 :(得分:1)
$file = WWW_ROOT . 'img' . DS . 'uploads' . DS . 'file123.jpg';
答案 2 :(得分:0)
我的图片路径,如app / webroot / img / upload / file123.jpg
WWW_ROOT定义您的webroot文件夹路径,DS定义' /'
$image='file123.jpg';
$file = WWW_ROOT . 'img' . DS . 'uploads' . DS . $image;
如果文件检查条件
if(file_exists($file) && $image){
enter your code if file exists
}else{
file not exists
}