|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-03-10 19:44 UTC] sniper@php.net
[2004-03-11 04:19 UTC] stan at workflowinc dot com
[2004-03-11 08:39 UTC] iliaa@php.net
[2004-03-11 08:51 UTC] stan at workflowinc dot com
[2004-03-13 05:05 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 15:00:01 2025 UTC |
Description: ------------ $_SERVER['argv'] is not detecting any arguments (register_argc_argv in php.ini is turned on). I'm actually working with 4.3.5RC4-dev, it wasn't on the list. Reproduce code: --------------- <?php print_r($_SERVER['argv']); exit; ?> Expected result: ---------------- Array ( [0] => test.php [1] => arg1 ) Actual result: -------------- Array ( [0] => test.php )