Console_Getopt::readPHPArgv

Console_Getopt::readPHPArgv -- read the predefined $argv array

Synopsis

require_once 'Console/Getopt.php';

array readPHPArgv ()

Beschreibung

Reads the $argv PHP array across different PHP configurations. Will take care of the register_globals and register_argc_argv ini directives.

Rückgabewert

array - array containing the options and parameters or PEAR_Error

Fehler-Meldungen

Tabelle 33-1. Mögliche Fehler-Arten

Error codeError messageReasonSolution
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

Hinweise

Diese Methode kann nicht statisch aufgerufen werden.

Beispiel