$argv

(PHP 4, PHP 5, PHP 7)

$argvArray of arguments passed to script

Descrierea

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

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

Notă: This variable is not available when register_argc_argv is disabled.

Exemple

Example #1 $argv example

<?php
var_dump
($argv);
?>

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

Exemplul de mai sus va afișa ceva similar cu:

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

Note

Notă:

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

A se vedea și

  • getopt() - Gets options from the command line argument list
  • $argc