MediaWiki  master
FSFileBackendDirList.php
Go to the documentation of this file.
1 <?php
23  protected function filterViaNext() {
24  while ( $this->iter->valid() ) {
25  if ( $this->iter->current()->isDot() || !$this->iter->current()->isDir() ) {
26  $this->iter->next(); // skip non-directories and dot files
27  } else {
28  break;
29  }
30  }
31  }
32 }
filterViaNext()
Filter out items by advancing to the next ones.
Wrapper around RecursiveDirectoryIterator/DirectoryIterator that catches exception or does any custom...