A função is_file () pode verificar se o arquivo especificado é um arquivo normal.
Sintaxe
bool is_file ( string $filename )
Esta função pode retornar verdadeiro se o nome do arquivo existir e for um arquivo normal ou falso caso contrário.
Exemplo 1
<?php
$file = "/PhpProject/php/phptest.txt";
if(is_file($file)) {
echo("$file is a regular file");
} else {
echo("$file is not a regular file");
}
?>
Resultado
/PhpProject/php/phptest.txt is a regular file
Exemplo-2
<?php
var_dump(is_file("/PhpProject/simple.txt")) . "\n";
var_dump(is_file("/PhpProject/php")) . "\n";
?>
Resultado
bool(false)
bool(false)