當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP file_exists()用法及代碼示例


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

  • 當您需要在處理之前知道文件是否存在時,它很有用。

  • 有了這個,在創建新文件時使用這個函數來知道文件是否已經存在。

用法

file_exists($file_path)

參數

  • file_path −設置要檢查的文件或目錄的路徑。必需。

返回

file_exists() 方法返回。

  • True,如果文件或目錄存在
  • False,如果文件或目錄不存在

示例

讓我們看一個檢查 “candidate.txt” 文件並顯示一條消息的示例,即使該文件不存在。

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

以下是顯示文件不存在的輸出。

輸出

/doc/candidate.txt does not exist!

相關用法


注:本文由純淨天空篩選整理自Samual Sam大神的英文原創作品 file_exists() function in PHP。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。