Skip to content

Instantly share code, notes, and snippets.

@brankoajzele
Created January 22, 2013 13:52
Show Gist options
  • Save brankoajzele/4594796 to your computer and use it in GitHub Desktop.
Save brankoajzele/4594796 to your computer and use it in GitHub Desktop.
<?php
function UUIDv4() {
return sprintf('%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
mt_rand(0, 0xffff), mt_rand(0, 0xffff),
mt_rand(0, 0xffff),
mt_rand(0, 0x0fff) | 0x4000,
mt_rand(0, 0x3fff) | 0x8000,
mt_rand(0, 0xffff), mt_rand(0, 0xffff), mt_rand(0, 0xffff)
);
}
$UUID = UUIDv4();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment