lshepstone/php-proc

PHP proc_* library

dev-master 2013-01-25 13:21 UTC

This package is not auto-updated.

Last update: 2025-02-15 16:34:04 UTC


README

Basic wrapper for the PHP proc_* functions (blocking, single-thread, limited Windows support).

Build Status

use \PhpProc\Process;

$process = new Process();
$result = $process
    ->setCommand("/usr/bin/php -r \"echo getenv('USER');\"");
    ->setWorkingDirectory(__DIR__);
    ->setEnvironmentVars(array(
        'PATH' => getenv('PATH'),
        'SHELL' => getenv('SHELL'),
        'USER' => 'developer'))
    ->execute();

echo 'Status: ' . $result->getStatus() . PHP_EOL;
if ($result->hasErrors()) {
    echo 'Errors: ' . $result->getStdErrContents();
} else {
    echo 'Output: ' . $result->getStdOutContents();
}
Status: 0
Output: developer