php-src/ext/spl/tests/regexiterator_getpregflags.phpt
Máté Kocsis 75a678a7e3
Declare tentative return types for Zend (#7251)
Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>
2021-07-19 13:44:20 +02:00

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