file_exists()
是 PHP 中的一個內置函數,用于檢查指定的文件或目錄是否存在。在 Web 開發中,這個函數非常有用,因為它可以幫助你執行不同的操作,例如顯示不同的內容、加載不同的模板或者創建文件等。
以下是一些使用 file_exists()
的示例:
<?php
if (file_exists("example.txt")) {
echo "文件存在";
} else {
echo "文件不存在";
}
?>
<?php
$template = "template_1.php";
if (file_exists($template)) {
include $template;
} else {
include "default_template.php";
}
?>
<?php
$directory = "uploads/";
if (!file_exists($directory)) {
mkdir($directory, 0755, true);
}
?>
<?php
$filename = "example.txt";
if (!file_exists($filename)) {
touch($filename);
echo "文件已創建";
} else {
echo "文件已存在";
}
?>
在使用 file_exists()
時,請確保正確處理文件路徑,以便在不同操作系統和服務器上正常工作。可以使用 dirname(__FILE__)
或 __DIR__
獲取當前文件的路徑。