FilecontentFilterIterator
        
        extends MultiplePcreFilterIterator
    
    
            
            in package
            
        
    
    
    
FilecontentFilterIterator filters files by their contents using patterns (regexps or strings).
Tags
Table of Contents
Properties
- $matchRegexps : mixed
 - $noMatchRegexps : mixed
 
Methods
- __construct() : mixed
 - accept() : bool
 - Filters the iterator values.
 - isAccepted() : bool
 - Checks whether the string is accepted by the regex filters.
 - isRegex() : bool
 - Checks whether the string is a regex.
 - toRegex() : string
 - Converts string to regexp if necessary.
 
Properties
$matchRegexps
    protected
        mixed
    $matchRegexps
     = []
    
    
    
    
$noMatchRegexps
    protected
        mixed
    $noMatchRegexps
     = []
    
    
    
    
Methods
__construct()
    public
                    __construct(Iterator $iterator, array<string|int, mixed> $matchPatterns, array<string|int, mixed> $noMatchPatterns) : mixed
    Parameters
- $iterator : Iterator
 - 
                    
The Iterator to filter
 - $matchPatterns : array<string|int, mixed>
 - 
                    
An array of patterns that need to match
 - $noMatchPatterns : array<string|int, mixed>
 - 
                    
An array of patterns that need to not match
 
accept()
Filters the iterator values.
    public
                    accept() : bool
    Attributes
Return values
bool —true if the value should be kept, false otherwise
isAccepted()
Checks whether the string is accepted by the regex filters.
    protected
                    isAccepted(string $string) : bool
    If there is no regexps defined in the class, this method will accept the string. Such case can be handled by child classes before calling the method if they want to apply a different behavior.
Parameters
- $string : string
 - 
                    
The string to be matched against filters
 
Return values
boolisRegex()
Checks whether the string is a regex.
    protected
                    isRegex(string $str) : bool
    Parameters
- $str : string
 
Return values
bool —Whether the given string is a regex
toRegex()
Converts string to regexp if necessary.
    protected
                    toRegex(string $str) : string
    Parameters
- $str : string
 - 
                    
Pattern: string or regexp
 
Return values
string —regexp corresponding to a given string or regexp