Adilol

Dom's (Myrax) string builder implementation in PHP

Oct 10th, 2011
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. function adilsRandomString() {
  2.     $alphanumerics = ’0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ’;
  3.     $result =;    
  4.     for ($x = 0; $x < 32; $x++) {
  5.         $result .= $alphanumerics [mt_rand(0, strlen($alphanumerics))];
  6.     }
  7.     return $result;
  8. }
  9.  
  10.  
  11.  
Advertisement
Add Comment
Please, Sign In to add comment