PHP Classes

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

Recommend this page to a friend!
  Classes of Hillary Kollan   Chatto PHP Websocket Chat System   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: Chatto PHP Websocket Chat System
Websocket based chat system using Ratchet library
Author: By
Last change:
Date: 3 years 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();