1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 00:32:23 +01:00
Files
archived-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"
}