PHP code example of asyncphp / doorman
1. Go to this page and download the library: Download asyncphp/doorman 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/ */
asyncphp / doorman example snippets
use AsyncPHP\Doorman\Manager\ProcessManager;
use AsyncPHP\Doorman\Task\ProcessCallbackTask;
$task1 = new ProcessCallbackTask(function () {
print "in task 1";
});
$task2 = new ProcessCallbackTask(function () {
print "in task 2";
});
$manager = new ProcessManager();
$manager->addTask($task1);
$manager->addTask($task2);
while ($manager->tick()) {
usleep(250);
}