1--TEST-- 2Test chunk_split() function : usage variations - unexpected large '$end' string argument variation 2 3--SKIPIF-- 4<?php 5if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only"); 6?> 7--FILE-- 8<?php 9echo "*** Testing chunk_split() : unexpected large 'end' string argument variation 2 ***\n"; 10 11$a=str_repeat("B", 65537); 12$b=1; 13$c=str_repeat("B", 65537); 14var_dump(chunk_split($a,$b,$c)); 15?> 16--EXPECTF-- 17*** Testing chunk_split() : unexpected large 'end' string argument variation 2 *** 18 19Fatal error: Possible integer overflow in memory allocation (65537 * 65537 + %r65556|65560%r) in %s on line %d 20