mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
33 lines
558 B
PHP
33 lines
558 B
PHP
--TEST--
|
|
SPL: RegexIterator::getPregFlags()
|
|
--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 is_long($r->getPregFlags());
|
|
|
|
?>
|
|
--EXPECT--
|
|
1
|