1. Go to this page and download the library: Download superrb/async 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/ */
$handler = new Superrb\Async\Handler(function(int $i): bool {
echo $i;
return true;
});
for ($i = 0; $i < 10; $i++) {
$handler->run($i);
}
// Processing will pause here until all asynchronous processes
// have completed. $success is true if all processes returned
// true, otherwise it is false
$success = $handler->waitAll();
$handler = new Superrb\Async\Handler(function(int $i): bool {
echo $i;
return true;
}, false);
for ($i = 0; $i < 10; $i++) {
// The loop will pause whilst the process runs, and continue
// when it is completed. $success is the return value of the
// closure
$success = $handler->run($i);
}
$handler = new Superrb\Async\Handler(function(int $i): bool {
$this->send('Hi from process '.$i);
return true;
});
for ($i = 0; $i < 10; $i++) {
$handler->run($i);
}
$handler->waitAll();
foreach($handler->getMessages() as $message) {
echo $message."\n";
}
// output
Hi from process 1
Hi from process 2
Hi from process 3
...
for ($i = 0; $i < 10; $i++) {
$handler->run($i);
foreach($handler->getMessages() as $message) {
echo $message."\n";
}
$handler->clearMessages();
}
$handler->setMessageBuffer(4096);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.