1. Go to this page and download the library: Download pagon/childprocess library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pagon / childprocess example snippets
declare(ticks = 1) ;
$manager = new ChildProcess();
$manager->on('exit', function () use ($process) {
error_log('exit');
exit;
});
// 做其他事情或等待
declare(ticks = 1) ;
$manager = new ChildProcess();
$child = $manager->spawn('/usr/sbin/netstat', false);
$child->on('stdout', function ($data) {
error_log('receive stdout data: ' . $data);
// to save data or process it
});
$child->on('stderr', function ($data) {
error_log('receive stderr data: ' . $data);
// to save data or process something
});
$child->join();
declare(ticks = 1) ;
$manager = new ChildProcess();
$child = $manager->spawn('/usr/sbin/netstat', array(
'timeout' => 60 // Will wait 60 seconds
'callback' => function(){ error_log('netstat start'); }
), false);
$child->on('stdout', function ($data) {
echo $data;
// to save data or process it
});
$child->join();
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.