downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

RegexIterator::setMode> <RegexIterator::getRegex
[edit] Last updated: Fri, 25 May 2012

view this page in

RegexIterator::setFlags

(PHP 5 >= 5.2.0)

RegexIterator::setFlagsSets the flags.

Descrierea

public void RegexIterator::setFlags ( int $flags )

Sets the flags.

Parametri

flags

The flags to set, a bitmask of class constants.

The available flags are listed below. The actual meanings of these flags are described in the predefined constants.

RegexIterator flags
value constant
1 RegexIterator::USE_KEY

Valorile întoarse

Nu este întoarsă nici o valoare.

Exemple

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";
}
?>

Exemplul de mai sus va afișa:

teststr2 => another test

Vedeți de asemenea



add a note add a note User Contributed Notes RegexIterator::setFlags
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites