Skip to content

Instantly share code, notes, and snippets.

@luads
Last active October 11, 2015 19:28
Show Gist options
  • Save luads/3908156 to your computer and use it in GitHub Desktop.
Save luads/3908156 to your computer and use it in GitHub Desktop.
Generate a GUID with PHP
<?php
function generateGuid()
{
$hash = strtoupper(hash('ripemd128', uniqid('', true) . md5(time() . rand(0, time()))));
$guid = '{'.substr($hash, 0, 8).'-'.substr($hash, 8, 4).'-'.substr($hash, 12, 4).'-'.substr($hash, 16, 4).'-'.substr($hash, 20, 12).'}';
return $guid;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment