PHP Classes

File: examples/clearInterval.php

Recommend this page to a friend!
  Classes of Ahmad Mustapha   React PHP Timer Loop   examples/clearInterval.php   Download  
File: examples/clearInterval.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: 311 bytes
 

Contents

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

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

setLoop($loop);

setInterval(0.5, function($timer){
    static
$counter = 1;
    echo
"Count: {$counter}\n";
   
    if(
$counter == 10){
       
clearInterval($timer);
    }
   
   
$counter++;
});

$loop->run();