PHP Classes

File: examples/clearTimeout.php

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

Contents

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

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

setLoop($loop);

$timeout = setTimeout(1.4, function(){
    echo
"I will never run!\n";
});

clearTimeout($timeout);

$loop->run();