首頁  >  文章  >  後端開發  >  php中file_exists()函數使用詳解

php中file_exists()函數使用詳解

怪我咯
怪我咯原創
2017-07-11 10:42:331918瀏覽

file_exists — 檢查檔案或目錄是否存在

說明:
bool file_exists ( string $filename )

如果由filename 指定的檔案或目錄存在則傳回TRUE,否則傳回FALSE。

實例

實例一

<?php
$filename = &#39;/www/aa/to/foo.txt&#39;;
if (file_exists($filename)) {
echo "文件$filename exists";
} else {
echo "文件$filename 不存在";
}
?>

輸出結果為:
檔案/www/aa/to/foo.txt己存在

實例二

<?php
echo file_exists("test.txt");
?>

直接用file_exists來回傳ture or false。

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

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