file_exists()
是 PHP 中的一個內置函數,用于檢查指定的文件或目錄是否存在。要有效地使用它,請遵循以下步驟:
\
,在 Unix 和 Linux 上是 /
)。$filepath = 'path/to/your/file.txt';
file_exists()
函數檢查文件或目錄是否存在。if (file_exists($filepath)) {
echo "文件存在";
} else {
echo "文件不存在";
}
if (file_exists($filepath)) {
// 讀取文件內容
$content = file_get_contents($filepath);
echo $content;
} else {
// 創建一個新文件
$newfile = fopen($filepath, 'w');
if ($newfile) {
fclose($newfile);
echo "文件已創建";
} else {
echo "無法創建文件";
}
}
file_exists()
函數的第二個參數設置為 true
。$dirpath = 'path/to/your/directory';
if (file_exists($dirpath) && is_dir($dirpath)) {
echo "目錄存在";
} else {
echo "目錄不存在";
}
注意:在使用 file_exists()
時,請確保考慮到安全性問題,例如路徑遍歷攻擊。避免使用用戶提供的路徑直接訪問系統文件。在執行任何文件操作之前,始終驗證和清理用戶輸入。