Skip to content

Instantly share code, notes, and snippets.

@lastguest
Created September 7, 2018 12:51
Show Gist options
  • Save lastguest/1dc560a2bbb63d893515f89fc37f42e8 to your computer and use it in GitHub Desktop.
Save lastguest/1dc560a2bbb63d893515f89fc37f42e8 to your computer and use it in GitHub Desktop.
[PHP] Easy Unique ID Generator
<?php
function unique_id($len = 8) {
$base ='ABCDEFGHKLMNOPQRSTWXYZ0123456789';
$max = strlen($base)-1; $code='';
mt_srand((double)microtime()*1000000);
while (strlen($code)<($len+1)){
$code .= $base{ mt_rand(0,$max) };
} return $code;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment