file_exists()
如果它指向一个目录,我读过它也可以返回。检查是否只有文件存在的最快方法是什么?
目前我有:
/**
* Check if the file exists.
*
* @return bool
*/
public function exists() {
if(is_null($this->_file)) return false;
return (!is_dir($this->_file) && file_exists($this->_file)) ? true : false;
}
我发现了很多与检查 PHP 中的文件是否存在有关的帖子,但没有任何关于目录以及如何最好地检查它的帖子。
这种方法可以调用 1000 秒,所以我真的可以让它尽可能快。