1 2 3 4 5 6
<?php function main($args) { array_shift($args); echo implode(' ',$args)."\n"; return 0; }