The RecursiveRegexIterator class

(PHP 5 >= 5.2.0, PHP 7)

Introducere

This recursive iterator can filter another recursive iterator via a regular expression.

Sinopsisul clasei

RecursiveRegexIterator extends RegexIterator implements RecursiveIterator {
/* Constante moștenite */
const int MATCH = 0 ;
const int GET_MATCH = 1 ;
const int ALL_MATCHES = 2 ;
const int SPLIT = 3 ;
const int REPLACE = 4 ;
const int USE_KEY = 1 ;
/* Metode */
public __construct ( RecursiveIterator $iterator , string $regex [, int $mode = self::MATCH [, int $flags = 0 [, int $preg_flags = 0 ]]] )
public hasChildren ( ) : bool
/* Metode moștenite */
public RegexIterator::accept ( ) : bool
public RegexIterator::getFlags ( ) : int
public RegexIterator::getMode ( ) : int
public RegexIterator::getPregFlags ( ) : int
public RegexIterator::getRegex ( ) : string
public RegexIterator::setFlags ( int $flags ) : void
public RegexIterator::setMode ( int $mode ) : void
public RegexIterator::setPregFlags ( int $preg_flags ) : void
}

Cuprins

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top