Предопределённые переменные
PHP Manual

$argv

$argvArray of arguments passed to script

Описание

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

Замечание: The first argument is always the current script's filename, therefore $argv[0] is the script's name.

Замечание: This variable is only available when register_argc_argv is enabled.

Примеры

Пример #1 $argv example

<?php
var_dump
($argv);
?>

When 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"
}


Предопределённые переменные
PHP Manual

Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/toplevels/data/www/maripoza.ru/fc7a82cd8e0116192ce432b06b9bd9c9/sape.php on line 219

Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/toplevels/data/www/maripoza.ru/fc7a82cd8e0116192ce432b06b9bd9c9/sape.php on line 225