mirror of
https://github.com/php/php-src.git
synced 2026-04-22 15:38:49 +02:00
ded3d984c6
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
11 lines
148 B
PHP
11 lines
148 B
PHP
--TEST--
|
|
Bug #67238 Ungreedy and min/max quantifier bug in PCRE 8.34 upstream
|
|
--FILE--
|
|
<?php
|
|
|
|
echo preg_match('/a{1,3}b/U', 'ab');
|
|
|
|
?>
|
|
--EXPECT--
|
|
1
|