is_file()
是 PHP 中的一個內置函數,用于檢查給定的文件路徑是否存在并且確實是一個文件
<?php
$file_path = 'path/to/your/file.txt';
if (is_file($file_path)) {
echo "The file '$file_path' exists and is a file.";
} else {
echo "The file '$file_path' does not exist or is not a file.";
}
?>
在這個示例中,將 $file_path
替換為您要檢查的文件路徑。如果文件存在且是一個文件,is_file()
將返回 true
,否則返回 false
。