Skip to content

Instantly share code, notes, and snippets.

@cdaven
Created May 22, 2013 11:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdaven/5626822 to your computer and use it in GitHub Desktop.
Save cdaven/5626822 to your computer and use it in GitHub Desktop.
Return a kind of UUID...
function uuid($identifier = '')
{
return sha1($identifier.microtime(true).mt_rand().php_uname());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment