Skip to content

Instantly share code, notes, and snippets.

@liuxd
Created January 6, 2015 06:28
Show Gist options
  • Save liuxd/d2d0f3e1a138502bdcb5 to your computer and use it in GitHub Desktop.
Save liuxd/d2d0f3e1a138502bdcb5 to your computer and use it in GitHub Desktop.
<?php
ob_start();
while (1) {
echo str_pad(time(), 4096);
sleep(1);
ob_flush();
flush();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment