Skip to content

Instantly share code, notes, and snippets.

@ddo
Created April 9, 2013 02:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ddo/5342363 to your computer and use it in GitHub Desktop.
Save ddo/5342363 to your computer and use it in GitHub Desktop.
<?php
header( 'Content-type: text/html; charset=utf-8' );
echo 'Begin ...<br />';
for( $i = 0 ; $i < 10 ; $i++ )
{
echo $i . '<br />';
flush();
ob_flush();
sleep(1);
}
echo 'End ...<br />';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment