2013年8月28日 星期三

[PHP]判斷檔案或路徑是否存在 file_exists()

有時寫好的程式會因為使用者輸入錯誤的檔案或路徑而無法順利執行,這時就會需要先進行檢查,file_exists()可以檢查目錄或檔案是否存在,並回傳ture or false



描述:

bool file_exists ( string $filename )
Checks whether a file or directory exists. 

範例:
<?php
$filename 
'/path/to/foo.txt';

if (
file_exists($filename)) {
    echo 
"The file $filename exists";
} else {
    echo 
"The file $filename does not exist";
}
?>

沒有留言:

張貼留言

Google Analytics初學者入門簡介