Skip to content

Instantly share code, notes, and snippets.

@assertchris
Created March 26, 2015 02:46
Show Gist options
  • Save assertchris/473b17f62b95c3c8acb2 to your computer and use it in GitHub Desktop.
Save assertchris/473b17f62b95c3c8acb2 to your computer and use it in GitHub Desktop.
<?php
use Symfony\Component\Process\Process;
$process = new Process('...');
$process->run(function ($type, $buffer) {
if (Process::ERR === $type) {
echo 'ERR > '.$buffer;
} else {
echo 'OUT > '.$buffer;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment