使用PHP判断本地文件是否存在
在PHP中,可以使用`file_exists()`函数来判断本地文件是否存在。示例代码如下: ```php $filename = "example.txt"; if (file_exists($filename)) { echo "文件存在"; } else { echo "文件不存在"; } ```
PHP判断本地文件是否存在可以使用is_file()、file_exists()函数。
is_file()函数方法
is_file 判断文件是否存在并且检查指定的文件名是否是正常的文件;
<?phpheader("Content-type:text/html;charset=utf-8");$file="check.txt";if(is_file($file)){echo"当前目录中,文件".$file."存在";}else{echo"当前目录中,文件".$file."不存在";}?>
file_exists()函数方法
file_exists 判断文件是否存在或者是目录是否存在;
<?phpheader("Content-type:text/html;charset=utf-8");$file="test.txt";if(file_exists($file)){echo"当前目录中,文件".$file."存在";}else{echo"当前目录中,文件".$file."不存在";}?