我想在上传文件之前检查是否存在目录。
如果目录不存在,则返回FALSE。
is_dir能做到吗?
答案 0 :(得分:3)
是is_dir()是解决方案。你试过吗?
答案 1 :(得分:1)
答案 2 :(得分:0)
例如,如果您想检查“etc / data / images /”是您可以使用的目录:
$dir = "etc/data/images/"; //First specify the directory you want to check existence of.
if(is_dir($dir)){ //The 'is_dir' function does the checking.
echo "Yes, $dir is a directory.";
}else{//If 'is_dir' returns false, the following will be ran:
echo 'No that is not a directory...';
}