PHP file_exists() 函數(shù)
PHP file_exists() 函數(shù)

定義和用法
file_exists() 函數(shù)檢查文件或目錄是否存在。
如果指定的文件或目錄存在則返回 TRUE,否則返回 FALSE。
語法
file_exists(path)
參數(shù) | 描述 |
---|---|
path | 必需。規(guī)定要檢查的路徑。 |
實(shí)例
<?php
echo file_exists("test.txt");
?>
echo file_exists("test.txt");
?>
上面的代碼將輸出:
1

相關(guān)文章
- PHP If Else 語句
- PHP 文件處理
- PHP Cookie
- PHP array_chunk() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_diff_assoc() 函數(shù)
- PHP array_intersect() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_search() 函數(shù)
- PHP asort() 函數(shù)
- PHP end() 函數(shù)
- PHP next() 函數(shù)
- PHP pos() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP uasort() 函數(shù)
- PHP usort() 函數(shù)
- PHP FTP 函數(shù)
- PHP HTTP 函數(shù)