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