|
update : 2015.11.03
php.shukuma.com검색:
|
$argv(PHP 4, PHP 5) $argv — Array of arguments passed to script 설명Contains an array of all the arguments passed to the script when running from the command line.
예제
Example #1 $argv example
<?phpWhen executing the example with: php script.php arg1 arg2 arg3 위 예제의 출력 예시:
array(4) {
[0]=>
string(10) "script.php"
[1]=>
string(4) "arg1"
[2]=>
string(4) "arg2"
[3]=>
string(4) "arg3"
}
|