Skip to content

Instantly share code, notes, and snippets.

@samrdev
Created January 23, 2012 16:26
Show Gist options
  • Save samrdev/1664094 to your computer and use it in GitHub Desktop.
Save samrdev/1664094 to your computer and use it in GitHub Desktop.
Create a unique 10-place user id.
<?php
function createId($mail, $token) {
$r = range('a', 'f');
$h = md5($mail.$token);
$i = str_replace($r, '', strtolower($h));
$i = substr($i, 0, 10);
return (string)$i;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment