Skip to content

Instantly share code, notes, and snippets.

@dgierejkiewicz
Forked from nikic/test.php
Created May 30, 2018 11:37
Show Gist options
  • Save dgierejkiewicz/a6e023c60bc538f0b1b805ecc431844a to your computer and use it in GitHub Desktop.
Save dgierejkiewicz/a6e023c60bc538f0b1b805ecc431844a to your computer and use it in GitHub Desktop.
<?php
register_tick_function(function() {
static $i = 0;
if (++$i >= 100000) {
throw new Exception('Too many ticks!');
}
});
declare(ticks=1) {
while (true) { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment