1--TEST-- 2Explode/memnstr bug 3--INI-- 4error_reporting=2047 5memory_limit=256M 6--FILE-- 7<?php 8$res = explode(str_repeat("A",145999999),1); 9var_dump($res); 10?> 11--EXPECTF-- 12array(1) { 13 [0]=> 14 string(1) "1" 15} 16