box-o-sand/php-practice/cli/args

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");
}
?>