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()
函數檢查該路徑是否存在并且是一個常規文件。如果函數返回 true
,則輸出 “The file exists and is a regular file.”,否則輸出 “The file does not exist or is not a regular file.”。