PHP 8.5.0 Beta 3 available for testing

RegexIterator::accept

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

RegexIterator::accept โ€” Get accept status

่ฏดๆ˜Ž

public RegexIterator::accept(): bool

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

ๅ‚่ง

๏ผ‹ๆทปๅŠ ๅค‡ๆณจ

็”จๆˆท่ดก็Œฎ็š„ๅค‡ๆณจ

ๆญค้กต้ขๅฐšๆ— ็”จๆˆท่ดก็Œฎ็š„ๅค‡ๆณจใ€‚
To Top