首頁  >  文章  >  後端開發  >  在PHP中的file_exists()函數

在PHP中的file_exists()函數

PHPz
PHPz轉載
2023-09-14 08:29:022057瀏覽

在PHP中的file_exists()函數

file_exists 方法檢查檔案或目錄是否存在。它接受要檢查的檔案或目錄的路徑作為參數。以下是它的用途 -

  • 當您需要在處理之前知道檔案是否存在時,它非常有用。

  • 這樣,在建立新檔案時使用此函數即可知道該檔案是否已存在。

語法

file_exists($file_path)

參數

  • #file_path - 設定要檢查是否存在的檔案或目錄的路徑。必需。

傳回

file_exists() 方法回傳。

  • 如果檔案或目錄存在,則傳回True
  • False,如果檔案或目錄不存在

範例

讓我們看一個檢查“candidate.txt”文件和即使文件不存在也顯示一條訊息。

 即時示範

<?php
$myfile = &#39;/doc/candidate.txt&#39;;
if (file_exists($myfile)) {
   echo "$myfile exists!";
} else {
   echo "$myfile does not exist!";
}
?>

以下是顯示檔案不存在的輸出。

輸出

/doc/candidate.txt does not exist!
##

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

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除