Jquery中文网 www.jquerycn.cn
Jquery中文网 >  脚本编程  >  php  >  正文 使用php判断文件是否存在、是否可读、目录是否存在

使用php判断文件是否存在、是否可读、目录是否存在

发布时间:2015-02-18   编辑:www.jquerycn.cn
使用php判断文件是否存在、是否可读、目录是否存在,给出了三个例子,供大家学习参考。

使用php判断文件是否存在、是否可读、目录是否存在,给出了三个例子,供大家学习参考。

例1:
 

复制代码 代码如下:
<?php
$file = 'www.jquerycn.cn.php';
if (is_readable($file) == false) {
die('文件不存在或者无法读取');
} else {
echo '存在';
}
?>

is_readable() 函数判断指定文件名是否可读。
指定的文件或目录存在并且可读,则返回 TRUE

例2:
 

复制代码 代码如下:
<?php
$filename = 'www.jquerycn.cn.php';
if (file_exists($filename)) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}
?>

file_exists -- 检查文件或目录是否存在
说明
bool file_exists ( string filename )
如果由 filename 指定的文件或目录存在则返回 TRUE,否则返回 FALSE。

例3:
 

复制代码 代码如下:
<?php
$file = 'www.jquerycn.cn.php';
if (is_file($file) == false) {
die('文件不存在或者无法读取');
} else {
echo '存在';
}
?>

is_file -- 判断给定文件名是否为一个正常的文件
说明
bool is_file ( string filename)
如果文件存在且为正常的文件则返回 TRUE。

您可能感兴趣的文章:
php用于判断文件是否存在、是否可读、目录是否存在的代码
使用php判断文件是否存在、是否可读、目录是否存在
php file_exists is_file与is_dir函数的区别分析
file_exists与is_file、is_dir的区别
php判断文件是否可读与可写的代码
php中is_file与file_exists的区别
php 读取目录文件夹列表的例子
PHP is_file、file_exists、is_dir总结
PHP中file_exists与is_file,is_dir的区别
php检查文件或目录是否存在的代码

[关闭]