On Mon, 20 Aug 2007 14:41:03 +0200, Per Jessen <[EMAIL PROTECTED]> wrote:
> N0K wrote:
> 
>> So, im trying to the the same in php command line
>>=20
>> i have test with many things, but i dont know how to specify this
>> variable to the php cli,
>> some tested example:
>>=20
>> php administration.php --varpass=3D112233 --checkpass=3DSubmit
>> php administration.php --"varpass=3D112233&checkpass=3DSubmit"
>> php administration.php --"varpass=3D112233" --"checkpass=3DSubmit
>>=20
>> And a lot of more combination.
>> Can i do this by php command line ?
> 
> Yes, but not that way.  There is no automagic mapping of argv[]
> variables to $_GET.  Take a look at the 'getopt' function.=20
> 
> 
> /Per Jessen, Z=C3=BCrich
> 
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php

I don't see where N0K asks for mapping of $_GET to commandline parameters.

getopt is a good solution. But not very portable (it only works on *nix systems)
And with list() and the argv array you can get the same effect.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to