Skip to content

Instantly share code, notes, and snippets.

@alphabraga
Last active December 28, 2015 00:29
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 alphabraga/7413369 to your computer and use it in GitHub Desktop.
Save alphabraga/7413369 to your computer and use it in GitHub Desktop.
PHP script with cool console output.
<?php
fwrite(STDOUT, "\0337");
for ($i=0; $i <=100 ; $i+=5)
{
fwrite(STDOUT, "\0338" . "{$i}%complete");
usleep(1000000);
}
fwrite(STDOUT, PHP_EOL);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment