mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
34 lines
545 B
PHP
34 lines
545 B
PHP
--TEST--
|
|
SPL: RegexIterator::setPregFlags()
|
|
--CREDITS--
|
|
Lance Kesson jac_kesson@hotmail.com
|
|
#testfest London 2009-05-09
|
|
--FILE--
|
|
<?php
|
|
|
|
class myIterator implements Iterator {
|
|
|
|
function current (): mixed{ return null;}
|
|
function key ( ): mixed{ return "";}
|
|
function next ( ): void{}
|
|
function rewind ( ): void{}
|
|
function valid ( ): bool{}
|
|
|
|
|
|
}
|
|
|
|
class TestRegexIterator extends RegexIterator{}
|
|
|
|
$rege = '/^a/';
|
|
|
|
|
|
$r = new TestRegexIterator(new myIterator, $rege);
|
|
|
|
$r->setPregFlags(PREG_OFFSET_CAPTURE);
|
|
|
|
echo $r->getPregFlags();
|
|
|
|
|
|
?>
|
|
--EXPECT--
|
|
256
|