box-o-sand/cli/args
2011-01-02 09:03:22 -05:00

10 lines
127 B
PHP
Executable File

#!/usr/bin/php -q
<?php
printf("ARGC = $argc\n\n");
foreach($argv as $i => $value) {
printf("ARGV[$i] = $value\n");
}
?>