Skip to content

Instantly share code, notes, and snippets.

@mattl
Created June 8, 2015 19:31
Show Gist options
  • Save mattl/638048b0b50ba12870ab to your computer and use it in GitHub Desktop.
Save mattl/638048b0b50ba12870ab to your computer and use it in GitHub Desktop.
function GUID()
{
if (function_exists('com_create_guid') === true)
{
return trim(com_create_guid(), '{}');
}
return sprintf('%04X%04X-%04X-%04X-%04X-%04X%04X%04X', mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(16384, 20479), mt_rand(32768, 49151), mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(0, 65535));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment