1
0
mirror of https://github.com/danog/process.git synced 2024-11-27 04:35:02 +01:00
process/examples/ping-many.php
2017-11-24 18:43:57 -06:00

34 lines
775 B
PHP

<?php
include dirname(__DIR__) . "/vendor/autoload.php";
use Amp\Process\Process;
use function Amp\Promise\all;
function show_process_output(Process $process): \Generator {
$stream = $process->getStdout();
while (null !== $chunk = yield $stream->read()) {
echo $chunk;
}
$code = yield $process->join();
$pid = yield $process->getPid();
echo "Process {$pid} exited with {$code}\n";
}
Amp\Loop::run(function () {
$hosts = ['8.8.8.8', '8.8.4.4', 'google.com', 'stackoverflow.com', 'github.com'];
$promises = [];
foreach ($hosts as $host) {
$process = new Process("ping {$host}");
$process->start();
$promises[] = new \Amp\Coroutine(show_process_output($process));
}
yield all($promises);
});