file_exists — 檢查檔案或目錄是否存在
說明:
bool file_exists ( string $filename )
如果由filename 指定的檔案或目錄存在則傳回TRUE,否則傳回FALSE。
實例
實例一
<?php $filename = '/www/aa/to/foo.txt'; if (file_exists($filename)) { echo "文件$filename exists"; } else { echo "文件$filename 不存在"; } ?>
輸出結果為:
檔案/www/aa/to/foo.txt己存在
實例二
<?php echo file_exists("test.txt"); ?>
直接用file_exists來回傳ture or false。
以上是php中file_exists()函數使用詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!