PHP code example of blogdaren / phpforker
1. Go to this page and download the library: Download blogdaren/phpforker 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/ */
blogdaren / phpforker example snippets
//_once __DIR__. '/vendor/autoload.php';
use PHPForker\Container;
//imitate...
$totalContainer = 2;
for($i = 1; $i <= $totalContainer; $i++)
{
$name = "demo-" . $i;
$socket_name = "tcp://0.0.0.0:2" . str_pad($i, 3, '0', STR_PAD_LEFT);
$box = new Container($socket_name);
$box->setPublicProps([
'name' => $name,
'count' => 2,
'user' => 'root',
]);
}
Container::start();