is_file,is_dir,file_exists
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了is_file,is_dir,file_exists相关的知识,希望对你有一定的参考价值。
is_file()和file_exists()效率比较,结果当文件存在时,is_file函数比file_exists函数速度快14倍,当文件不存在时,两者速度相当。同理,当文件目录存在时,is_dir()比file_exists()快18倍。不存在时两者效率相当。php的file_exists = is_dir + is_file。
* 如果要判断目录是否存在,请优先考虑函数 is_dir(directory)
* 如果要判断文件是否存在,请优先考虑函数 is_file(filepath)
以上是关于is_file,is_dir,file_exists的主要内容,如果未能解决你的问题,请参考以下文章
is_file file_exists microtime performance