php-src/ext/standard/tests/strings/explode_bug.phpt
2008-08-05 20:14:27 +00:00

16 lines
204 B
PHP

--TEST--
Explode/memnstr bug
--INI--
error_reporting=2047
memory_limit=256M
--FILE--
<?php
$res = explode(str_repeat("A",145999999),1);
var_dump($res);
?>
--EXPECTF--
array(1) {
[0]=>
string(1) "1"
}