检查cakephp上是否存在图像

时间:2012-06-12 00:18:27

标签: cakephp

我在CakePHP有一个项目,我想知道如果没有使用扩展名'.jpg',如果图像是否存在扩展名'.jpg',任何帮助都将深受赞赏。

3 个答案:

答案 0 :(得分:2)

bool file_exists(string $ filename)

检查文件或目录是否存在。如果filename指定的文件或目录存在,则返回TRUE;否则就错了。

http://php.net/manual/en/function.file-exists.php

答案 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
}