haxorqt
Home
Console
Upload
information
Create File
Create Folder
About
:
/
opt
/
cloudlinux
/
alt-php81
/
root
/
usr
/
share
/
pear
/
test
/
excimer
/
tests
/
Filename :
timer.phpt
back
Copy
--TEST-- ExcimerTimer --SKIPIF-- <?php if (!extension_loaded("excimer")) print "skip"; ?> --FILE-- <?php $timer = new ExcimerTimer; $timer->setInterval(1); $timer->setCallback(function() { throw new Exception('timeout'); }); $timer->start(); try { while (true) { usleep(100000); } } catch (Exception $e) { echo "OK\n"; } --EXPECT-- OK