PHP | file_exists( )函数
PHP中的 file_exists()函数是一个内置函数,用于检查文件或目录是否存在。
您要检查的文件或目录的路径作为参数传递给 file_exists()函数,该函数在成功时返回 True,在失败时返回 False。
句法:
file_exists($path)
参数: PHP中的 file_exists()函数只接受一个参数$path 。它指定要检查的文件或目录的路径。
返回值:成功返回True,失败返回False。
错误和异常:
- 如果指定的路径指向不存在的文件,则 file_exists()函数返回 False。
- 对于大于 2gb 的文件,由于 PHP 的整数类型是有符号的并且许多平台使用 32 位整数,因此某些文件系统函数可能会产生意想不到的结果。
例子:
Input : echo file_exists('/user01/work/gfg.txt');
Output : 1
Input : $file_pointer = '/user01/work/gfg.txt';
if (file_exists($file_pointer)) {
echo "The file $file_pointer exists";
}else {
echo "The file $file_pointer does
not exists";
}
Output : 1
下面的程序说明了 file_exists()函数。
程序 1 :
输出:
1
方案二:
输出:
1
参考:
http:// PHP.net/manual/en/ 函数.file-exists。 PHP
PHP是一种专门为 Web 开发而设计的服务器端脚本语言。您可以按照此PHP教程和PHP示例从头开始学习PHP 。