file_exists方法检查文件或目录是否存在。它接受要检查的文件或目录的路径作为参数。以下是其用途-
当您需要在处理之前知道文件是否存在时,此功能很有用。
这样,在创建新文件时使用此功能可以知道该文件是否已经存在。
file_exists($file_path)
file_path-设置要检查是否存在的文件或目录的路径。
file_exists()方法返回。
是,如果文件或目录存在
错误,如果文件或目录不存在
让我们看一个示例,该示例检查“ 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!