Random Unique ID Hash Generator


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. $seed = 'Rand0m';
  2.  
  3. for($i=0; $i<5000; $i++)
  4. {
  5. echo substr(sha1(uniqid($seed . mt_rand(), true)), 0, 10)."\n";
  6. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.