Skip to content

Instantly share code, notes, and snippets.

@freekrai
Last active December 28, 2015 10:49
Show Gist options
  • Select an option

  • Save freekrai/7489011 to your computer and use it in GitHub Desktop.

Select an option

Save freekrai/7489011 to your computer and use it in GitHub Desktop.
Generate UUID in PHP
<?php
function generate_uuid() {
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 )
);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment