在PHP中,file_exists()
函數是用于檢查一個文件或目錄是否存在的最佳方法
以下是使用file_exists()
函數的示例:
<?php
$filename = 'test.txt';
if (file_exists($filename)) {
echo "文件 $filename 存在";
} else {
echo "文件 $filename 不存在";
}
?>
請注意,file_exists()
函數可能會受到文件系統權限的影響。如果你沒有足夠的權限訪問特定的文件或目錄,那么file_exists()
函數可能返回錯誤的結果。因此,確保你的腳本具有適當的權限來訪問要檢查的文件或目錄。