Нет описания https://symfony.com/components/Process

Fabien Potencier 00a1308e8b Revert "Merge branch '2.3' into 2.5" 9 лет назад
Exception 0db8c1a21c When a process fails, check if the output is enabled 10 лет назад
Tests 00a1308e8b Revert "Merge branch '2.3' into 2.5" 9 лет назад
.gitignore 8ac46d268d Added missing files .gitignore 11 лет назад
CHANGELOG.md 5d7d78e238 [Process] Deprecate using values that are not string for Process::setStdin and ProcessBuilder::setInput 10 лет назад
ExecutableFinder.php b6180398b4 use value of DIRECTORY_SEPARATOR to detect Windows 10 лет назад
LICENSE 3644f0a4b1 Updated copyright to 2015 10 лет назад
PhpExecutableFinder.php b6180398b4 use value of DIRECTORY_SEPARATOR to detect Windows 10 лет назад
PhpProcess.php 5096b27e78 Docblock fixes 10 лет назад
Process.php 7b6632c849 Merge branch '2.3' into 2.5 9 лет назад
ProcessBuilder.php 132422ceb9 Revert "[FrameworkBundle] fixed tests" 9 лет назад
ProcessPipes.php cfdf1012c2 use PHP_WINDOWS_VERSION_BUILD to detect Windows 10 лет назад
ProcessUtils.php f38897f371 Merge branch '2.3' into 2.5 10 лет назад
README.md 0434822691 [Doc] Use Markdown syntax highlighting 10 лет назад
composer.json ceb4dd9527 updated version to 2.5 11 лет назад
phpunit.xml.dist de1a4e24f6 [Tests] Silenced all deprecations in tests for 2.3 10 лет назад

README.md

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 (Process::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:

$ cd path/to/Symfony/Component/Process/
$ composer.phar install
$ phpunit