Skip to content

Instantly share code, notes, and snippets.

@kivlor
Created June 16, 2015 01:07
Show Gist options
  • Save kivlor/aa1bfaf688569a2a4d48 to your computer and use it in GitHub Desktop.
Save kivlor/aa1bfaf688569a2a4d48 to your computer and use it in GitHub Desktop.
Silly little ticker...
<?php
$iteration = 0;
$ttl = 5;
$tickerCharacters = ['|','\\','-','/'];
while ($ttl > 0) {
$ttl -= 0.05;
time_nanosleep(0, 50000000);
echo "\033[1D";
echo $tickerCharacters[$iteration%4];
$iteration++;
}
echo "\033[2D";
echo "\n";
@kivlor
Copy link
Author

kivlor commented Jun 16, 2015

Similar to the npm ticker

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment