在PHP中,可以使用file_exists()函数来检查文件是否存在。示例如下:
file_exists()
$file = "example.txt"; if(file_exists($file)){ echo "文件存在。"; } else { echo "文件不存在。"; }
在上面的示例中,首先定义了要检查的文件名example.txt,然后使用file_exists()函数检查文件是否存在,并根据返回值输出相应的提示信息。
example.txt