file_exists()
函數(shù)在 PHP 中用于檢查給定的文件或目錄是否存在。默認(rèn)情況下,它會(huì)在當(dāng)前工作目錄中查找文件或目錄。要跨目錄使用 file_exists()
,您需要提供完整的文件路徑。
您可以使用相對(duì)路徑或絕對(duì)路徑來(lái)指定文件或目錄的位置。例如:
// 使用相對(duì)路徑
if (file_exists('path/to/your/file.txt')) {
echo 'File exists';
} else {
echo 'File does not exist';
}
// 使用絕對(duì)路徑
if (file_exists('/var/www/html/path/to/your/file.txt')) {
echo 'File exists';
} else {
echo 'File does not exist';
}
請(qǐng)注意,如果使用相對(duì)路徑,確保您的腳本具有訪問(wèn)所需文件的適當(dāng)權(quán)限。如果您仍然遇到問(wèn)題,請(qǐng)檢查文件路徑是否正確。