PHP 中檢查檔案是否存在
Minahil Noor
2020年12月19日
本文將介紹在 PHP 中檢查檔案是否存在的不同方法。
使用 file_exists()
函式檢查 PHP 中是否存在檔案
在 PHP 中我們有一個內建的函式來檢查一個檔案是否存在,這個函式是 file_exists()
。這個函式接受檔案路徑或名稱作為引數,並檢查給定檔案是否存在。使用該函式的正確語法如下。
file_exists($path);
該函式只接受一個引數。它的詳細引數如下。
變數 | 說明 |
---|---|
$path |
它是我們要檢查的檔案的路徑。 |
如果檔案存在於指定的目錄中,函式返回 True
。下面的程式顯示了我們使用 PHP file_exists()
函式來檢查檔案是否存在的方法。
<?php
$path = '/user/test/How to check if file exists in PHP.txt';
if (file_exists($path)) {
echo "The file $path exists";
} else {
echo "The file $path does not exist";
}
?>
輸出:
The file /user/test/How to check if file exists in PHP.txt exists.