vote up 2 vote down star

I've been all over google and haven't been able to find a regex that would parse (correctly) CLI arguments.

Does anyone have in their code library such a thing?

Ideally it would parse all styles of arguments (i.e.: -v -abc --arg=val --arg="val1 val2" --arg "val")

Thanks!

P.S.: This would be used in PHP context (preg)

flag

7 Answers

vote up 6 vote down

Have a look at PEAR's Console_Getopt or the Zend Framework Zend_Console_Getopt

Your PHP version may have support for getopt as a built-in also.

link|flag
actually it's not in PEAR anymore, it's a standard function – vartec Mar 11 at 13:09
it is in PEAR, Seems SO does odd things with URLs containing underscores, have changed the link... – Paul Dixon Mar 11 at 13:51
vote up 4 vote down

getopt()

link|flag
vote up 1 vote down

Thanks for the fast replies, I did have a look into those 2, the only problem is that they don't allow anonymous options, every option has to be defined in the first place to be matched

link|flag
vote up 1 vote down

@acrosman: $argv parses the arguments just partially, i.e.: it extracts them individually but you still have to build the logic that extracts the arguments into property -> value

link|flag
"comment", nor "answer" for comments – vartec Mar 11 at 13:29
vote up 0 vote down

Not sure if this would help with this question, but try RegexLib. It's an inmense Regex library :)

link|flag
vote up 0 vote down

The global $argv already parses the command line arguments automatically if you're running CLI. Also see: Using PHP from the command line

link|flag
vote up 0 vote down

Just thought I'd let you know I found a solution.

http://nlindblad.org/2007/05/12/handling-command-line-arguments-in-php/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.