英[ɪgˈzɪst] 美[ɪɡˈzɪst]
vi.存在;生存;生活;繼續存在
#第三人稱單數: exists 現在分詞: existing 過去式:
##第三人稱單數: exists 現在分詞:existing 過去式: existed 過去分詞 existed ###php file_exists()函數 語法
作用:檢查檔案或目錄是否存在。
語法:file_exists(path)
#參數:
參數 | 描述 |
path | 必要。規定要檢查的路徑。 |
說明:若指定的檔案或目錄存在則傳回 true,否則傳回 false。
php file_exists()函數 範例
<?php $file = file_exists("./test.txt"); echo $file; ?>