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.”。