Skip to content

Instantly share code, notes, and snippets.

@axelf
Created October 14, 2019 22:51
Show Gist options
  • Save axelf/008503decae0206a06a586fa92c1f36c to your computer and use it in GitHub Desktop.
Save axelf/008503decae0206a06a586fa92c1f36c to your computer and use it in GitHub Desktop.
Create a UUID
<?php
function 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