RegexIterator::accept

(PHP 5 >= 5.2.0)

RegexIterator::acceptGet accept status

Описание

public bool RegexIterator::accept ( void )

Matches (string) RegexIterator::current() (or RegexIterator::key() if the RegexIterator::USE_KEY flag is set) against the regular expression.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

TRUE if a match, FALSE otherwise.

Примеры

Пример #1 RegexIterator::accept() example

This example shows that only items matching the regular expression are accepted.

<?php
$names 
= new ArrayIterator(array('Ann''Bob''Charlie''David'));
$filter = new RegexIterator($names'/^[B-D]/');
foreach (
$filter as $name) {
    echo 
$name PHP_EOL;
}
?>

Результат выполнения данного примера:

Bob
Charlie
David

Смотрите также


Участник рейтинга Тэглайн 2010