views:

66

answers:

1

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)?

+1  A: 

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

Reynolds