2015-10-06 106 views
1

我的形象目錄\webroot\files\thumbs文件存在總是返回false

我想補充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 

回答

3

你缺少.擴展之前。更新您的$file定義如下:

$file = WWW_ROOT .'files' . DS . 'thumbs' . DS .'_'.$password->collection_id.'.jpg'; 
                 // This was missing ---^ 

$file_exists = file_exists($file); 
+0

ohh !!你是對的 :) –