Last active
February 3, 2018 03:09
-
-
Save davidsword/0cd14582e4c2871b8d75958c6a43a73e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
ob_end_flush(); | |
for( $i = 0 ; $i < 10 ; $i++ ) { | |
echo $i; | |
flush(); | |
ob_flush(); | |
sleep(1); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment