blob: 05a9baab07fca0e3c07049225808633585870587 (
plain)
1
2
3
4
5
6
7
8
9
10
|
--TEST--
Test preg_match() function : error conditions - jit stacklimit exhausted
--FILE--
<?php
var_dump(preg_match('/^(foo)+$/', str_repeat('foo', 8192)));
var_dump(preg_last_error() === PREG_JIT_STACKLIMIT_ERROR);
?>
--EXPECT--
bool(false)
bool(true)
|