PHP如何判斷檔案 目錄是否存在?

2021-06-23 10:08:09 字數 536 閱讀 3982

php中判斷目錄或者檔案是否存在經常會用到的is_file()、is_dir()、file_exists()這三個函式,本文將為大家介紹這三個函式如何去用。

1)is_file()函式, 用來判斷檔案是否存在,**如下:

if(!is_file('test.html'))else

?>

2)is_dir()函式,用來判斷目錄是否存在,**如下:

if(!is_dir('test'))else

?>

3)file_exists()函式,既可以判斷檔案是否存在、也可以判斷目錄是否存在。**如下:

if(!file_exists('test.html'))else

if(!file_exists('test'))else

?>

從上面來看,我們知道了file_exists()乙個函式既能判斷目錄存在與否又可以判斷檔案是否存在,但是它的執行效率要比其他兩個差很多,所以建議大家:

如果判斷檔案是否存在就用is_file()函式;

如果判斷目錄是否存在就用is_dir()函式

php 判斷檔案或目錄是否存在

判斷檔案或目錄是否存在有自帶的函式 file exists 檔案是否存在 file check.txt if file exists file else is dir 目錄是否存在 dir c datacheck if is dir dir else 判斷檔案或目錄是否存在有自帶的函式 file e...

php 判斷檔案是否存在

sha1 file file 語法 sha1 file file,raw 引數 file 必需。規定要計算的檔案。raw 可選。布林值,規定十六進製制或二進位制輸出格式 true 原始 16 字元二進位制格式 false 預設。32 字元十六進製制數 版本 php 4.2.0 說明 sha1 fil...

shell判斷目錄 檔案是否存在

編寫指令碼 vim a.sh bin bash a ls grep zabbix b usr local src zabbix if d a then touch b echo b已建立 else echo a fi具體引數如下 根據自己需要選擇相對應的引數 e 判斷 a是否存在 d 判斷 a是否存...