PHP程序员站--PHP编程开发平台
 当前位置:主页 >> PHP基础 >> 新手专区 >> 

用file_exists来检查文件,目录是否存在

用file_exists来检查文件,目录是否存在

来源:phperz.com  作者:phper  发布时间:2012-05-29
file_exists -- 用来检查文件或目录是否存在 说明 bool file_exists ( string filename ) 如果由 filename 指定的文件或目录存在则返回 TRUE,否则返回 FALSE。 在 Windows 中要用 //computername/share/filename 或者 \computernamesharefilename 来检查网络中的共

file_exists -- 用来检查文件或目录是否存在
说明
bool file_exists ( string filename )
如果由 filename 指定的文件或目录存在则返回 TRUE,否则返回 FALSE。
在 Windows 中要用 //computername/share/filename 或者 \\computername\share\filename 来检查网络中的共享文件。

例子
<?php
$filename = '/path/to/foo.txt';
if (file_exists($filename)) {
echo "这个文件存在";
} else {
echo "这个文件不存在";
}
?>
注: 本函数的结果会被缓存。更多信息参见 clearstatcache().
警告: 如果因为安全模式的限制而导致不能访问文件的话,该函数会返回 FALSE。然而,如果文件在 safe_mode_include_dir 所指定的目录内的话,仍然可以使用 include 来包含。

另外:file_exists会受目录的执行权限影响,如果上级目录没有执行权限的话,会返回false


延伸阅读:
用method_exists检查某个类的方法是否存在
SQL中EXISTS的用法
php用function_exists检查某个函数方法是否存在
PHP中用class_exists检查某个类是否以定义
PHP 杂谈 坑爹的file_exists
is_callable()与method_exists()的区别
Tags: file_exists  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号