PHP Classes

File: vendor/react/event-loop/examples/02-periodic.php

Recommend this page to a friend!
  Classes of Hillary Kollan   Chatto PHP Websocket Chat System   vendor/react/event-loop/examples/02-periodic.php   Download  
File: vendor/react/event-loop/examples/02-periodic.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: 315 bytes
 

Contents

Class file image Download
<?php

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

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

$timer = $loop->addPeriodicTimer(0.1, function () {
    echo
'tick!' . PHP_EOL;
});

$loop->addTimer(1.0, function () use ($loop, $timer) {
   
$loop->cancelTimer($timer);
    echo
'Done' . PHP_EOL;
});

$loop->run();