Skip to content

Instantly share code, notes, and snippets.

@avraampiperidis
Created June 18, 2013 19:42
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 avraampiperidis/5808599 to your computer and use it in GitHub Desktop.
Save avraampiperidis/5808599 to your computer and use it in GitHub Desktop.
php cli script. matrix illusion
<?php
matrix:
$table = array('| |');
$numbers = array(0,1,00,01,10,11,111,000,' ');
shuffle($table);
shuffle($numbers);
foreach ($numbers as $numbers) {
set_time_limit(0);
usleep(900); // change this to increase or decrease speed
echo "$numbers";
}
foreach ($table as $table) {
set_time_limit(0);
usleep(900); // // change this to increase or decrease speed
echo "$table";
}
goto matrix
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment