PHP Classes

File: vendor/react/event-loop/examples/03-ticks.php

Recommend this page to a friend!
  Classes of Stanley Aloh   Tic Tac Toe Multiplayer   vendor/react/event-loop/examples/03-ticks.php   Download  
File: vendor/react/event-loop/examples/03-ticks.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: 222 bytes
 

Contents

Class file image Download
<?php

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

$loop = React\EventLoop\Factory::create();

$loop->futureTick(function () {
    echo
'b';
});
$loop->futureTick(function () {
    echo
'c';
});
echo
'a';

$loop->run();