CustomFilterIterator
        
        extends FilterIterator
    
    
            
            in package
            
        
    
    
    
CustomFilterIterator filters files by applying anonymous functions.
The anonymous function receives a \SplFileInfo and must return false to remove files.
Tags
Table of Contents
Methods
- __construct() : mixed
 - accept() : bool
 - Filters the iterator values.
 
Methods
__construct()
    public
                    __construct(Iterator<string, SplFileInfo> $iterator, array<string|int, callable> $filters) : mixed
    Parameters
- $iterator : Iterator<string, SplFileInfo>
 - 
                    
The Iterator to filter
 - $filters : array<string|int, callable>
 - 
                    
An array of PHP callbacks
 
Tags
accept()
Filters the iterator values.
    public
                    accept() : bool