我的图片目录为\webroot\files\thumbs
我正在尝试添加file_exists
条件。为此,我尝试了以下代码
$file = WWW_ROOT .'files' . DS . 'thumbs' . DS .'_'.$password->collection_id.'jpg';
$file_exists = file_exists($file);
它总是返回零。
如果我echo $file
它会给我这样的输出
c:\xampp\htdocs\myproject\files\thumbs\_61.jpg
答案 0 :(得分:3)
您在分机前错过了.
。更新您的$file
定义,如下所示:
$file = WWW_ROOT .'files' . DS . 'thumbs' . DS .'_'.$password->collection_id.'.jpg';
// This was missing ---^
$file_exists = file_exists($file);