12345678910111213 |
- --TEST--
- iconv_substr() charset parameter length checks (CVE-2007-4783)
- --EXTENSIONS--
- iconv
- --FILE--
- <?php
- $a = str_repeat('A', 99897);
- $b = str_repeat('/', 2798349);
- var_dump(iconv_substr($a, 0, 1, $b));
- ?>
- --EXPECTF--
- Warning: iconv_substr(): Encoding parameter exceeds the maximum allowed length of 64 characters in %s on line %d
- bool(false)
|