For Programmers: Free Programming Magazines  


Home > Archive > PHP Language > September 2004 > Re: PHP 4.3.8: $_SERVER[’argv’] m









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author Re: PHP 4.3.8: $_SERVER[’argv’] m
Stefan Hegenbart

2004-09-29, 8:03 pm

steve wrote:

> PHP 4.3.8: $_SERVER[’argv’] does not return any values. Did not change
> anything in php.ini.
>
> Any ideas. Running from command line (CLI), Win Apache.
> ..Also tried to enable $argc, $argv parameters directly (via php.ini)
> with no success either.
>


do not use the $_SERVER on CLI as this will not be filled like when you
use a webserver.

just use $argv[1] .. $argv[2] .. and so on.

you should also consider taking a look at you string delimiters. the
correct way to note an array variable is not with backticks but:
$_SERVER['var'] or $_SERVER["var"]

regards
sh

--
"The goal of Computer Science is to build something that will last at
least until we've finished building it." -- unknown
Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com