1--TEST-- 2Test escapeshellcmd() allowed argument length 3--FILE-- 4<?php 5ini_set('memory_limit', -1); 6$var_2 = str_repeat('A', 1024*1024*64); 7escapeshellcmd($var_2); 8 9?> 10===DONE=== 11--EXPECTF-- 12Fatal error: escapeshellcmd(): Command exceeds the allowed length of %d bytes in %s on line %d 13