file_exists 方法檢查檔案或目錄是否存在。它接受要檢查的檔案或目錄的路徑作為參數。以下是它的用途 -
當您需要在處理之前知道檔案是否存在時,它非常有用。
這樣,在建立新檔案時使用此函數即可知道該檔案是否已存在。
file_exists($file_path)
#file_path - 設定要檢查是否存在的檔案或目錄的路徑。必需。
file_exists() 方法回傳。
讓我們看一個檢查“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!##
以上是在PHP中的file_exists()函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!