有个问题很神奇~哪位大神帮忙回答一下咧?
file_exists($filename)
is_file($filename)
is_writeable($filename)
is_readable($filename)
这几个判断文件是否存在的方法,
我确定test文件是存在的,但是在判断的时候输出的是不存在~这是什么鬼?是因为www文件目录下的读写权限吗?如果是读写权限的话~为什么file_get_content()这个方法会读出里边的内容来?
file_exists($filename)
is_file($filename)
is_writeable($filename)
is_readable($filename)
这几个判断文件是否存在的方法,
我确定test文件是存在的,但是在判断的时候输出的是不存在~这是什么鬼?是因为www文件目录下的读写权限吗?如果是读写权限的话~为什么file_get_content()这个方法会读出里边的内容来?
2018-08-09
$isfile = file_exists($fileName) ? "使用file_exists函数判断文件存在。" : exit("文件不存在!") ;
echo $isfile,"<br />";
$isfile = is_file($fileName) ? "使用is_file函数判断文件存在。" : exit("文件不存在!") ;
echo $isfile,"<br />";
$isfile = is_readable($fileName) ? "使用is_readable函数判断文件存在。" : exit("文件不存在!") ;
echo $isfile,"<br />";
$isfile = is_writable($fileName) ? "使用is_writable函数判断文件存在。" : exit("文件不存在!") ;
echo $isfile,"<br />";
当文件不存在,使用exit退出脚本,节省资源。
举报