file_exists 方法检查文件或目录是否存在。它接受要检查的文件或目录的路径作为参数。以下是它的用途 -
当您需要在处理之前知道文件是否存在时,它很有用。
有了这个,在创建新文件时使用这个函数来知道文件是否已经存在。
用法
file_exists($file_path)
参数
file_path −设置要检查的文件或目录的路径。必需。
返回
file_exists() 方法返回。
- True,如果文件或目录存在
- False,如果文件或目录不存在
示例
让我们看一个检查 “candidate.txt” 文件并显示一条消息的示例,即使该文件不存在。
<?php
$myfile = '/doc/candidate.txt';
if (file_exists($myfile)) {
echo "$myfile exists!";
} else {
echo "$myfile does not exist!";
}
?>
以下是显示文件不存在的输出。
输出
/doc/candidate.txt does not exist!
相关用法
- PHP file_exists( )用法及代码示例
- PHP file_get_contents()用法及代码示例
- PHP file_put_contents()用法及代码示例
- PHP fileowner()用法及代码示例
- PHP fileperms()用法及代码示例
- PHP filetype()用法及代码示例
- PHP filectime( )用法及代码示例
- PHP filesize( )用法及代码示例
- PHP fileperms( )用法及代码示例
- PHP fileinode()用法及代码示例
- PHP filemtime( )用法及代码示例
- PHP file()用法及代码示例
- PHP filemtime()用法及代码示例
- PHP fileatime()用法及代码示例
- PHP filectime()用法及代码示例
- PHP filegroup()用法及代码示例
- PHP fileatime( )用法及代码示例
- PHP filetype( )用法及代码示例
- PHP filter_id()用法及代码示例
注:本文由纯净天空筛选整理自Samual Sam大神的英文原创作品 file_exists() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。