is_file() 函数可以检查指定文件是否为常规文件。
用法
bool is_file ( string $filename )
如果文件名存在并且是常规文件,则此函数可以返回 true,否则返回 false。
示例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");
}
?>
输出
/PhpProject/php/phptest.txt is a regular file
示例2
<?php
var_dump(is_file("/PhpProject/simple.txt")) . "\n";
var_dump(is_file("/PhpProject/php")) . "\n";
?>
输出
bool(false) bool(false)
相关用法
- PHP is_file( )用法及代码示例
- PHP is_finite()用法及代码示例
- PHP is_finite(), is_infinite(), is_nan()用法及代码示例
- PHP is_float()用法及代码示例
- PHP is_link( )用法及代码示例
- PHP is_link()用法及代码示例
- PHP is_subclass_of()用法及代码示例
- PHP is_long()用法及代码示例
- PHP is_iterable()用法及代码示例
- PHP is_object()用法及代码示例
- PHP is_callable()用法及代码示例
- PHP is_executable()用法及代码示例
- PHP is_dir( )用法及代码示例
- PHP is_dir()用法及代码示例
- PHP is_nan()用法及代码示例
- PHP is_readable( )用法及代码示例
- PHP is_uploaded_file()用法及代码示例
- PHP is_string()用法及代码示例
- PHP is_resource()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Function is_file()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。