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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。