$argv

(PHP 4, PHP 5, PHP 7)

$argvМассив переданных скрипту аргументов

Описание

Содержит массив array из всех аргументов переданных скрипту при запуске из командной строки.

Замечание: Первый аргумент $argv[0] всегда содержит имя файла запущенного скрипта.

Замечание: Эта переменная недоступна если register_argc_argv установлен в disabled.

Примеры

Пример #1 Пример использования$argv

<?php
var_dump
($argv);
?>

Запустим пример в командной строке: 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"
}

Смотрите также

  • getopt() - Извлечение параметров из списка аргументов командной строки

Коментарии

Автор:
If you come from a shell scripting background, you might expect to find this topic under the heading "positional parameters".
2009-09-14 19:57:25
http://php5.kiev.ua/manual/ru/reserved.variables.argv.html
Please note that, $argv and $argc need to be declared global, while trying to access within a class method. 

<?php
class A
{
    public static function 
b()
    {
       
var_dump($argv);
       
var_dump(isset($argv));
    }
}

A::b();
?>

will output NULL bool(false)  with a notice of "Undefined variable ..."

whereas global $argv fixes that.
2011-08-22 12:06:45
http://php5.kiev.ua/manual/ru/reserved.variables.argv.html
To use $_GET so you dont need to support both if it could be used from command line and from web browser.

foreach ($argv as $arg) {
    $e=explode("=",$arg);
    if(count($e)==2)
        $_GET[$e[0]]=$e[1];
    else   
        $_GET[$e[0]]=0;
}
2013-11-05 17:20:51
http://php5.kiev.ua/manual/ru/reserved.variables.argv.html
Sometimes $argv can be null, such as when "register-argc-argv" is set to false.  In some cases I've found the variable is populated correctly when running "php-cli" instead of just "php" from the command line (or cron).
2015-11-24 09:24:25
http://php5.kiev.ua/manual/ru/reserved.variables.argv.html
Автор:
I discovered that `register_argc_argv` is alway OFF if you use php internal webserver, even if it is set to `On` in the php.ini.

What means there seems to be no way to access argv / argc in php internal commandline server.
2021-11-26 10:11:53
http://php5.kiev.ua/manual/ru/reserved.variables.argv.html
You can reinitialize the argument variables for web applications. 
So if you created a command line, with some additional tweaks you can make it work on the web.
2023-04-22 14:45:01
http://php5.kiev.ua/manual/ru/reserved.variables.argv.html

    Поддержать сайт на родительском проекте КГБ