说明
bool
file_exists ( string filename )
如果由 filename 指定的文件或目录存在则返回
TRUE,否则返回 FALSE。
在 Windows 中要用 //computername/share/filename 或者
\\computername\share\filename 来检查网络中的共享文件。
例子 1. 测试一个文件是否存在
<?php $filename = '/path/to/foo.txt';
if (file_exists($filename)) { echo "The file $filename exists"; } else { echo "The file $filename does not exist"; } ?>
|
|
提示: 自 PHP 5.0.0
起本函数也可被某些 URL wrapper 使用。参考附录 L 来看哪些 wrapper 支持
stat() 系列函数的功能。
参见 is_readable(),is_writable(),is_file()
和 file()。