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.
$argv
(PHP 4, PHP 5)
$argv — Tableau d'arguments passés au script
Description
Contient un tableau de tous les arguments passés au script lorsqu'il est appelé depuis la ligne de commande.
Note: Le premier argument $argv[0] est toujours le nom qui a été utilisé pour exécuter le script.
Note: Cette variable n'est pas disponible lorsque register_argc_argv est désactivé.
Exemples
Exemple #1 Exemple avec $argv
<?php
var_dump($argv);
?>
Lorsque l'on exécute l'exemple avec la commande : php script.php arg1 arg2 arg3
L'exemple ci-dessus va afficher quelque chose de similaire à :
array(4) {
[0]=>
string(10) "script.php"
[1]=>
string(4) "arg1"
[2]=>
string(4) "arg2"
[3]=>
string(4) "arg3"
}
tufan dot oezduman at googlemail dot com
22-Aug-2011 09:06
Steve Schmitt
14-Sep-2009 04:57
If you come from a shell scripting background, you might expect to find this topic under the heading "positional parameters".
karsten at typo3 dot org
18-Feb-2009 12:48
Note: when using CLI $argv (as well as $argc) is always available, regardless of register_argc_argv, as explained at http://docs.php.net/manual/en/features.commandline.php
