PHP is_file() 函数
PHP is_file() 函数
完整的 PHP Filesystem 参考手册定义和用法
is_file() 函数检查指定的文件是否是常规的文件。
如果文件是常规的文件,该函数返回 TRUE。
语法
is_file(file)
参数 | 描述 |
---|---|
file | 必需。规定要检查的文件。 |
提示和注释
注释:该函数的结果会被缓存。请使用 clearstatcache() 来清除缓存。
实例
<?php
$file = "test.txt";
if(is_file($file))
{
echo ("$file is a regular file");
}
else
{
echo ("$file is not a regular file");
}
?>
$file = "test.txt";
if(is_file($file))
{
echo ("$file is a regular file");
}
else
{
echo ("$file is not a regular file");
}
?>
上面的代码将输出:
test.txt is a regular file
完整的 PHP Filesystem 参考手册
相关文章
- PHP 简介
- PHP 运算符
- PHP Switch 语句
- PHP 数组排序
- PHP 发送电子邮件
- PHP 错误处理
- PHP 异常处理
- PHP array_diff_ukey() 函数
- PHP array_key_exists() 函数
- PHP array_key_first() 函数
- PHP array_pop() 函数
- PHP array_rand() 函数
- PHP array_reduce() 函数
- PHP array_replace_recursive() 函数
- PHP array_splice() 函数
- PHP array_values() 函数
- PHP arsort() 函数
- PHP shuffle() 函数
- PHP cURL 函数
- PHP HTTP 函数