PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of David Tamas   PHP Sort Directory Iterator   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Documentation
Class: PHP Sort Directory Iterator
Interface to sort and filter directory entries
Author: By
Last change:
Date: 5 years ago
Size: 854 bytes
 

Contents

Class file image Download

directoryWalker

Sort RecursiveDirectoryIterator elements level-by-level

Sorts the entries in the current subdirectory (based on custom defined criteria) and stores the entries desired->current position pairs. Because RecursiveDirectoryIterator is seekable this class can seek through the entries in the desired order. Minimal memory and performance overhead

Filtering uses include+exclude rulesets with regexp or bogus glob patterns

This is a simple matcher that can filter elements using include and exclude rulesets. An elemnt is matched if it matches any include rule, as long as it does not match an exclude rule.

Rules are simple regexp patterns or glob like patterns that converts to regexp patterns. This class joins up the include rules into one regexp and the exclude rules into an another regexp to improve the matching performance.