(PHP 5 >= 5.2.0, PHP 7)
Sets the regular expression flags.
public void RegexIterator::setPregFlags ( int $preg_flags )
Sets the regular expression flags.
Parameters:
preg_flags
The regular expression flags. See RegexIterator::__construct() for an overview of available flags.
Returns:
No value is returned.
Examples:
RegexIterator::setPregFlags() example
Creates a new RegexIterator that filters all entries with where the array key starts with 'test'.
1 2 3 4 5 6 7 8 9 10 11 12 | <?php $test = array ( 'test 1' , 'another test' , 'test 123' ); $arrayIterator = new ArrayIterator( $test ); $regexIterator = new RegexIterator( $arrayIterator , '/^test/' , RegexIterator::GET_MATCH); $regexIterator ->setPregFlags(PREG_OFFSET_CAPTURE); foreach ( $regexIterator as $key => $value ) { var_dump( $value ); } ?> |
The above example will output something similar to:
array(1) { [0]=> array(2) { [0]=> string(4) "test" [1]=> int(0) } } array(1) { [0]=> array(2) { [0]=> string(4) "test" [1]=> int(0) } }
See also:
Please login to continue.