PHP Classes

File: vendor/react/event-loop/examples/92-benchmark-timers.php

Recommend this page to a friend!
  Classes of Stanley Aloh   Tic Tac Toe Multiplayer   vendor/react/event-loop/examples/92-benchmark-timers.php   Download  
File: vendor/react/event-loop/examples/92-benchmark-timers.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Tic Tac Toe Multiplayer
Manage the interactions ofTic-Tac-Toe game players
Author: By
Last change:
Date: 9 days ago
Size: 251 bytes
 

Contents

Class file image Download
<?php

use React\EventLoop\Factory;

require
__DIR__ . '/../vendor/autoload.php';

$loop = Factory::create();

$n = isset($argv[1]) ? (int)$argv[1] : 1000 * 100;

for (
$i = 0; $i < $n; ++$i) {
   
$loop->addTimer(0, function () { });
}

$loop->run();