summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/bug78853.phpt
blob: 369ed0f9260ec66772b2f0a3a0dccb05bb772048 (plain)
1
2
3
4
5
6
7
8
--TEST--
Bug #78853 (preg_match() may return integer > 1)
--FILE--
<?php
var_dump(preg_match('/^|\d{1,2}$/', "7"));
?>
--EXPECT--
int(1)