is_file()
是 PHP 中的一个内置函数,用于检查给定的文件路径是否存在并且是一个常规文件
if (is_file($filepath)) {
echo "The file exists and is a regular file.";
} else {
echo "The file does not exist or is not a regular file.";
}
在这个示例中,$filepath
是一个包含文件路径的变量。is_file()
函数会检查该路径是否存在,以及它是否指向一个常规文件。如果条件为真,则输出 “The file exists and is a regular file.”,否则输出 “The file does not exist or is not a regular file.”。