php8.5
Home/ Manual/ predefined / variables/ $argv

$argv

PHP function Edit on GitHub ✎

Array of arguments passed to script

Description

Contains an array of all the arguments passed to the script when running from the command line.

Note

The first argument $argv[0] is always the name that was used to run the script.

Note

This variable is not available when register_argc_argv is disabled.

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

$argv example

php
<?php
var_dump($argv);
?>

When executing the example with: php script.php arg1 arg2 arg3

The above example will output something similar to:

output
array(4) {
  [0]=>
  string(10) "script.php"
  [1]=>
  string(4) "arg1"
  [2]=>
  string(4) "arg2"
  [3]=>
  string(4) "arg3"
}

Notes

Note

This is also available as $_SERVER['argv'].

See Also

Source: language/predefined/variables/argv.xml · from the official PHP manual (php/doc-en)