Skip to content

Instantly share code, notes, and snippets.

@endihunter
Created August 25, 2016 14:06
Show Gist options
  • Save endihunter/618e856a7107005efcfb0fd8e57239a8 to your computer and use it in GitHub Desktop.
Save endihunter/618e856a7107005efcfb0fd8e57239a8 to your computer and use it in GitHub Desktop.
<?php
function getId($chunks = 4, $chunkLen = 4) {
$max = pow(36, $chunkLen) - 1;
$id = '';
for ($i = 0; $i < $chunks; ++$i) {
$r = (mt_rand(0, $max) * (microtime(true) * 10000)) / mt_rand(0, $max);
$id .= str_pad(base_convert($r, 10, 36), $chunkLen, "0", STR_PAD_LEFT);
}
return strtoupper($id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment