PHP Classes

File: examples/setInterval.php

Recommend this page to a friend!
  Classes of Ahmad Mustapha   React PHP Timer Loop   examples/setInterval.php   Download  
File: examples/setInterval.php
Role: Example script
Content type: text/plain
Description: Example script
Class: React PHP Timer Loop
Call functions after a given time like JavaScript
Author: By
Last change:
Date: 3 years ago
Size: 234 bytes
 

Contents

Class file image Download
<?php
require(dirname(__DIR__, 3).'/autoload.php');

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

setLoop($loop);

setInterval(1.4, function(){
    static
$counter = 1;
    echo
"Count: {$counter}\n";
   
$counter++;
});

$loop->run();