ID: 26206
Updated by: [EMAIL PROTECTED]
Reported By: danielc at analysisandsolutions dot com
-Status: Open
+Status: Feedback
Bug Type: CGI related
Operating System: Windows 2000
PHP Version: 5CVS-2003-11-11 (dev)
New Comment:
Try following:
php -n -r " var_dump($_SERVER['argv']); " 1 2 3
Previous Comments:
------------------------------------------------------------------------
[2003-11-11 12:52:32] danielc at analysisandsolutions dot com
Description:
------------
$_SERVER['argv'] and $_SERVER['argc'] aren't created.
php.ini and phpinfo() show register_argc_argv as being On.
Behavior is the same via CLI or CGI binaries.
Substituted a known good php.ini file to see ensure the file was
getting parsed. Same results.
Everything worked fine under 500b2-dev--php5-win32-200310010230
Problem began when upgraded to 500b2-dev--php5-win32-200311040330
Persists in the current CVS snapshot
500b3-dev--php5-win32-200311111530
Reproduce code:
---------------
#! c:/progra~1/php/cli/php
<?php
print_r($_SERVER['argv']);
?>
now execute test script...
./t.php fjiao
Expected result:
----------------
Array
(
[0] => ./t.php
[1] => fjiao
)
Actual result:
--------------
Notice: Undefined index: argv in d:\t.php on line 3
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=26206&edit=1