English | 简体中文 | 繁體中文
查询

file_exists()函数—用法及示例

「 检查文件或目录是否存在 」


函数名:file_exists()

适用版本:所有版本

用法:file_exists() 函数用于检查文件或目录是否存在。

语法:bool file_exists ( string $filename )

参数:

  • $filename:要检查的文件或目录的路径。

返回值:

  • 如果文件或目录存在,则返回 true。
  • 如果文件或目录不存在,则返回 false。

示例:

// 检查文件是否存在
$file = 'path/to/file.txt';
if (file_exists($file)) {
    echo "文件存在";
} else {
    echo "文件不存在";
}

// 检查目录是否存在
$dir = 'path/to/directory';
if (file_exists($dir)) {
    echo "目录存在";
} else {
    echo "目录不存在";
}

注意事项:

  • file_exists() 函数对于文件和目录都适用。
  • 如果给定的路径是一个符号链接,它将返回符号链接所指向的文件或目录是否存在。
  • file_exists() 函数可以用来检查远程文件的存在性,只需提供文件的 URL 即可。
补充纠错
上一个函数: file_get_contents()函数
下一个函数: filetype()函数
热门PHP函数
分享链接