This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Process
2012-04-08 20:29:02 +02:00
..
Exception fixed CS 2012-04-07 09:10:50 +02:00
Tests [Process] Skip signal assertion on windows 2012-04-08 20:29:02 +02:00
composer.json Removed version field 2012-02-27 09:59:20 +01:00
ExecutableFinder.php [Process] workaround a faulty implementation of is_executable on Windows 2011-09-15 19:42:58 +02:00
LICENSE Updated LICENSE files copyright 2012-02-22 10:10:37 +01:00
PhpExecutableFinder.php Only work with the cli sapi 2012-03-02 16:42:35 +01:00
PhpProcess.php [Process] changed ExecutableFinder to return false instead of throwing an exception when the executable is not found 2011-04-26 15:18:24 +02:00
phpunit.xml.dist [PhpUnit] Fix the path to the boostrap files in the components 2012-03-30 13:49:28 +02:00
Process.php [Process] Close pipes before calling proc_close to avoid deadlocks as advised on the proc_close php.net documentation 2012-04-08 20:27:37 +02:00
ProcessBuilder.php [Process] Fix command escaping 2012-03-18 13:07:34 +01:00
README.md moved component and bridge unit tests to the src/ directory 2012-03-29 08:37:22 +02:00

Process Component

Process executes commands in sub-processes.

In this example, we run a simple directory listing and get the result back:

use Symfony\Component\Process\Process;

$process = new Process('ls -lsa');
$process->setTimeout(3600);
$process->run();
if (!$process->isSuccessful()) {
    throw new RuntimeException($process->getErrorOutput());
}

print $process->getOutput();

You can think that this is easy to achieve with plain PHP but it's not especially if you want to take care of the subtle differences between the different platforms.

And if you want to be able to get some feedback in real-time, just pass an anonymous function to the run() method and you will get the output buffer as it becomes available:

use Symfony\Component\Process\Process;

$process = new Process('ls -lsa');
$process->run(function ($type, $buffer) {
    if ('err' === $type) {
        echo 'ERR > '.$buffer;
    } else {
        echo 'OUT > '.$buffer;
    }
});

That's great if you want to execute a long running command (like rsync-ing files to a remote server) and give feedback to the user in real-time.

Resources

You can run the unit tests with the following command:

phpunit -c src/Symfony/Component/Process/