Skip to content

Instantly share code, notes, and snippets.

@borislav-angelov
Created January 27, 2014 14:32
Show Gist options
  • Save borislav-angelov/8649545 to your computer and use it in GitHub Desktop.
Save borislav-angelov/8649545 to your computer and use it in GitHub Desktop.
<?php
$i = 0;
while (true) {
echo $i . " abc \n";
time_sleep_until( time() + 10);
$i++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment