Issue with getting options from Command line

52 Views Asked by At

OK, I know about getopt.

So, let's say if I want to have to options (e.g. a,b), I would do a getopt("a:b:") and something like php myscript.php -a someAvalue -b someBvalue would be perfectly recogniseable with the option values stored as they should.

Now what if I wanted to be able to recognise the most common type of syntax and still get getopt to work :

php myscript.php somefile.txt -a someAvalue -b someBvalue

Any ideas?

1

There are 1 best solutions below

2
On

You can access the command line parameters using variable: $argv[]