is_file()
是 PHP 中的一個內置函數,用于檢查給定的文件路徑是否存在且是一個常規文件
<?php
$file_path = 'path/to/your/file.txt';
if (is_file($file_path)) {
echo "The file exists and is a regular file.";
} else {
echo "The file does not exist or is not a regular file.";
}
?>
在這個示例中,將 $file_path
變量設置為要檢查的文件的路徑。然后使用 is_file()
函數檢查文件是否存在且為常規文件。根據檢查結果,輸出相應的消息。