123456789101112131415 |
- --TEST--
- Bug #74183 - preg_last_error not returning error code after error
- --FILE--
- <?php
- $sRegex = "/([A-Z]|[a-z]|[0-9]| |Ñ|ñ|!|"|%|&|'|´|-|:|;|>|=|<|@|_|,|\{|\}|`|~|á|é|í|ó|ú|Á|É|Í|Ó|Ú|ü|Ü){1,300}/";
- $sTest = "Hello world";
- var_dump(preg_match($sRegex, $sTest));
- var_dump(preg_last_error() === \PREG_INTERNAL_ERROR);
- ?>
- --EXPECTF--
- Warning: preg_match(): Compilation failed: regular expression is too large at offset %s in %s on line %d
- bool(false)
- bool(true)
|