首頁 >後端開發 >PHP問題 >php file_exists函數怎麼用

php file_exists函數怎麼用

藏色散人
藏色散人原創
2019-05-25 10:22:582957瀏覽

php file_exists函數用來檢查檔案或目錄是否存在,其語法為file_exists(path),參數path是必需,指規定要檢查的路徑。

php file_exists函數怎麼用

php file_exists函數怎麼用?

作用:檢查檔案或目錄是否存在。

語法:

file_exists(path)

參數:

#path 必要。規定要檢查的路徑。        

說明:

若指定的檔案或目錄存在則傳回 true,否則傳回 false。

php file_exists()函數使用範例

<?php
$file = file_exists("./test.txt");
echo $file;
?>

以上是php file_exists函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn