PHP Doku:: Get flags - regexiterator.getflags.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenStandard PHP Library (SPL)IteratorenThe RegexIterator classRegexIterator::getFlags

Ein Service von Reinhard Neidl - Webprogrammierung.

The RegexIterator class

<<RegexIterator::__construct

RegexIterator::getMode>>

RegexIterator::getFlags

(PHP 5 >= 5.2.0)

RegexIterator::getFlagsGet flags

Beschreibung

public int RegexIterator::getFlags ( void )

Returns the flags, see RegexIterator::setFlags() for a list of available flags.

Rückgabewerte

Returns the set flags.

Beispiele

Beispiel #1 RegexIterator::getFlags() example

<?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);

if (
$regexIterator->getFlags() & RegexIterator::USE_KEY) {
    echo 
'Filtering based on the array keys.';
} else {
    echo 
'Filtering based on the array values.';
}
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Filtering based on the array keys.

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)