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