Created
March 24, 2012 23:50
-
-
Save stefanocudini/2189285 to your computer and use it in GitHub Desktop.
random text flow
This file contains 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
#!/usr/bin/env php | |
<? | |
$alphNums = '<>/:-_0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; | |
$l = strlen($alphNums); | |
#$maxl = 100; | |
while(true) | |
{ | |
echo $alphNums{rand(0,$l)}; | |
usleep(1000); | |
} | |
?> |
This file contains 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
#!/usr/bin/env php | |
<? | |
$alphNums = '<>/:-_0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; | |
$l = strlen($alphNums); | |
#$maxl = 100; | |
while(true) | |
{ | |
echo $alphNums{rand(0,$l)}; | |
usleep(1000); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment