定义和用法
file_exists()
函数检查文件或目录是否存在。
如果指定的文件或目录存在则返回 true
,否则返回 false
。
语法
file_exists(path)
path
,必需。规定要检查的路径。
例子
$file = "check.txt"; if(file_exists($file)) { echo "当前目录中,文件".$file."存在"; } else { echo "当前目录中,文件".$file."不存在"; }
以上就是 php 判断文件是否存在的详细内容.