PHP Asynchronous Command: Get commands output without waiting to finish

PHP Asynchronous Command: Get commands output without waiting to finish

This class can get commands output without waiting to finish. It can execute external commands in asynchronously and can get their output using pipes on demand even before the commands have finished to execute.

The class can perform other operations like changing the current directory of the program, send data as input to the program, kill the program or send other signals. It supports executing commands either on Windows and Linux or other Unix environments using the pcntl extension.

View & Download