php file_exists函數用來檢查檔案或目錄是否存在,其語法為file_exists(path),參數path是必需,指規定要檢查的路徑。
php file_exists函數怎麼用?
作用:檢查檔案或目錄是否存在。
語法:
file_exists(path)
參數:
#path 必要。規定要檢查的路徑。
說明:
若指定的檔案或目錄存在則傳回 true,否則傳回 false。
php file_exists()函數使用範例
<?php $file = file_exists("./test.txt"); echo $file; ?>
以上是php file_exists函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!