$argvArray of arguments passed to script DescriptionContains an array of all the arguments passed to the script when running from the command line.
Warning
To test if a script is being run from the command line, php_sapi_name should be used instead of checking whether $argv or $_SERVER['argv'] is set. Examples
Example #1 $argv example When executing the example with: php script.php arg1 arg2 arg3 The above example will output something similar to:
array(4) {
[0]=>
string(10) "script.php"
[1]=>
string(4) "arg1"
[2]=>
string(4) "arg2"
[3]=>
string(4) "arg3"
}
Notes
|