โ— Shell
clean mode source โ†—

PHP: RegexIterator::setFlags - Manual

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

RegexIterator::setFlags โ€” Sets the flags

Description

public function RegexIterator::setFlags(int $flags): void

Sets the flags.

Return Values

No value is returned.

Examples

Example #1 RegexIterator::setFlags() example

Creates a new RegexIterator that filters all entries whose key starts with 'test'.

<?php
$test = array ('str1' => 'test 1', 'teststr2' => 'another test', 'str3' => 'test 123');

$arrayIterator = new ArrayIterator($test);
$regexIterator = new RegexIterator($arrayIterator, '/^test/');
$regexIterator->setFlags(RegexIterator::USE_KEY);

foreach ($regexIterator as $key => $value) {
    echo $key . ' => ' . $value . "\n";
}
?>

The above example will output:

Found A Problem?

There are no user contributed notes for this page.