Re: [PHP] Running php from shell - passing parameters

2002-02-17 Thread Greg Donald

> I have to run php script from Linux shell.
>
> I have no trouble except with passing the parameters.
> What is the right sintax to pass them to the script?
>
> I would like to do something like this:
> /usr/local/bin/php ./test.php param=value


What you want is $argc and $argv as described in the predefined variables
documentation:

http://www.php.net/manual/en/language.variables.predefined.php


Greg Donald - http://destiney.com/
http://phprated.com/ | http://phplinks.org/ | http://phptopsites.com/



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




RE: [PHP] Running php from shell - passing parameters

2002-02-17 Thread Martin Towell

$argv and $argc are prob. what you're after - dunno if there's any parameter
parsing functions - but it's a start

HTH
Martin

-Original Message-
From: Bostjan Marusic [mailto:[EMAIL PROTECTED]]
Sent: Monday, February 18, 2002 10:00 AM
To: [EMAIL PROTECTED]
Subject: [PHP] Running php from shell - passing parameters


I have to run php script from Linux shell.

I have no trouble except with passing the parameters.
What is the right sintax to pass them to the script?

I would like to do something like this:
/usr/local/bin/php ./test.php param=value


Best Regards,
   Bostjan Marusic


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