文章来源:
100素材网
更新时间:
2014-08-04 16:06:35
php判断目录是否存在 php判断文件夹 php创建目录 php删除文件
php判断文件是否存在或是否可读或目录是否存在结合三个实例保证你能看懂。关于php操作文件这方面即基础又很重要,在很多地方都需要php对文件进行相应的操作,所以你还是好好看看下面的内
is_readable() 函数判断指定文件名是否可读.
指定的文件或目录存在并且可读,则返回 TRUE
说明
bool file_exists ( string filename )
如果由 filename 指定的文件或目录存在则返回 TRUE,否则返回 FALSE.
说明
bool is_file ( string filename)
如果文件存在且为正常的文件则返回 TRUE.
is_readable() 函数判断指定文件名是否可读.
指定的文件或目录存在并且可读,则返回 TRUE
<?php $file = '100sucai.com'; if (is_readable($file) == false) { die('文件不存在或者无法读取'); } else { echo '存在'; } ?>file_exists -- 检查文件或目录是否存在
说明
bool file_exists ( string filename )
如果由 filename 指定的文件或目录存在则返回 TRUE,否则返回 FALSE.
<?php $filename = '100sucai.com'; if (file_exists($filename)) { echo "The file $filename exists"; } else { echo "The file $filename does not exist"; } ?>is_file -- 判断给定文件名是否为一个正常的文件
说明
bool is_file ( string filename)
如果文件存在且为正常的文件则返回 TRUE.
<?php $file = '100sucai.com'; if (is_file($file) == false) { die('文件不存在或者无法读取'); } else { echo '存在'; } ?>
浏览次数次
上一篇文章: smarty配置iframe框架中内容页的程序代码