Many of the component libraries and toolkits I'm familiar with lack CLI-specific libraries (zend, kohana, etc..). Are there any libraries/tools that are designed specifically for developing CLI application (such as an abstraction of php's multi-threading library, pcntl/posix)?

link|improve this question

When you say CLI are you referring to Microsoft .NET? Common Language Infrstructure? Or Command Line Interface? – AaronLS Apr 15 '10 at 18:07
4  
@Aaron : in a PHP-related context, CLI means Command Line Interface. – Pascal MARTIN Apr 15 '10 at 18:08
feedback

2 Answers

up vote 2 down vote accepted

ncurses is compatible with PHP, and is used to develop a wide number of CLI applications in many different languages.

More info: http://devzone.zend.com/article/1083

link|improve this answer
feedback

I've used PEAR package Console_CommandLine and was very satisfied. I may not fulfill all you requirements though, but it's worth giving it a look.

It helps parsing the input (arguments, options, sub-commands, etc...) and build basic functionnalities (usage, version, ...).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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