Posted in PHP onSeptember 26, 2019
PHP判断文件或目录是否存在
file_exists:判断文件是否存在
$file = "check.txt"; if(file_exists($file)) { echo "当前目录中,文件".$file."存在"; } else { echo "当前目录中,文件".$file."不存在"; }
is_dir:判断目录是否存在
$dir = "c:/datacheck"; if(is_dir($dir)) { echo "当前目录下,目录".$dir."存在"; } else { echo "当前目录下,目录".$dir."不存在"; }
注意:该函数的结果会被缓存。请使用 clearstatcache() 来清除缓存。
以上就是全部相关知识点,感谢大家对三水点靠木的支持。
php判断目录存在的简单方法
- Author -
laozhang声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@