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