Console_Getopt::readPHPArgv -- read the predefined $argv array
Описание
Reads the $argv PHP array across different PHP configurations.
Will take care of the register_globals and register_argc_argv ini
directives.
Возвращаемое значение
array - array containing the options and
parameters or PEAR_Error
Throws
Таблица 34-1. Возможные значения PEAR_Error
| Error code | Error message | Reason | Solution |
|---|
| NULL |
"Console_Getopt: Could not read cmd args
(register_argc_argv=Off?)"
|
PHP does not provide the command-line arguments for the script.
|
Check "register_argc_argv" in your php.ini
|
Заметка
Эта функция не должна вызываться статически.
Пример
Пример 34-1. Using readPHPArgv()
<?php
$con = new Console_Getopt;
$args = $con->readPHPArgv();
array_shift($args);
$options = $con->getopt2($args, $shortopt);
?>
|
|