Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function GetWord($maxlength) {
  2. $file_content = file('word-list.txt');
  3. $nword = $file_content[array_rand($file_content)];
  4.  
  5. while(mb_strlen($nword) > $maxlength) {
  6. $nword = $file_content[array_rand($file_content)];
  7. }
  8.  
  9. return $nword;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement