PHP生成唯一uuid的方法

今天在开发备件库存时遇到需要为每一个设备生成一个唯一的traceID,用于对设备的来龙去脉进行跟踪。同时为了检索方便就在网上搜了一下,没想到竟然在PHP的函数uniqid()下面看到了一个PHP生成唯一UUID的方法。

所以转载收藏一下,以供不时之需。

类库介绍:

The following class generates VALID RFC 4211 COMPLIANT Universally Unique IDentifiers (UUID) version 3, 4 and 5.

Version 3 and 5 UUIDs are named based. They require a namespace (another valid UUID) and a value (the name). Given the same namespace and name, the output is always the same.

Version 4 UUIDs are pseudo-random.

UUIDs generated below validates using OSSP UUID Tool, and output for named-based UUIDs are exactly the same. This is a pure PHP implementation.

类库源码:

  1. <?php
  2. class UUID {
  3.   public static function v3($namespace$name) {
  4.     if(!self::is_valid($namespace)) return false;
  5.     // Get hexadecimal components of namespace
  6.     $nhex = str_replace(array('-','{','}'), ''$namespace);
  7.     // Binary Value
  8.     $nstr = '';
  9.     // Convert Namespace UUID to bits
  10.     for($i = 0; $i < strlen($nhex); $i+=2) {
  11.       $nstr .= chr(hexdec($nhex[$i].$nhex[$i+1]));
  12.     }
  13.     // Calculate hash value
  14.     $hash = md5($nstr . $name);
  15.     return sprintf('%08s-%04s-%04x-%04x-%12s',
  16.       // 32 bits for "time_low"
  17.       substr($hash, 0, 8),
  18.       // 16 bits for "time_mid"
  19.       substr($hash, 8, 4),
  20.       // 16 bits for "time_hi_and_version",
  21.       // four most significant bits holds version number 3
  22.       (hexdec(substr($hash, 12, 4)) & 0x0fff) | 0x3000,
  23.       // 16 bits, 8 bits for "clk_seq_hi_res",
  24.       // 8 bits for "clk_seq_low",
  25.       // two most significant bits holds zero and one for variant DCE1.1
  26.       (hexdec(substr($hash, 16, 4)) & 0x3fff) | 0x8000,
  27.       // 48 bits for "node"
  28.       substr($hash, 20, 12)
  29.     );
  30.   }
  31.   public static function v4() {
  32.     return sprintf('%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
  33.       // 32 bits for "time_low"
  34.       mt_rand(0, 0xffff), mt_rand(0, 0xffff),
  35.       // 16 bits for "time_mid"
  36.       mt_rand(0, 0xffff),
  37.       // 16 bits for "time_hi_and_version",
  38.       // four most significant bits holds version number 4
  39.       mt_rand(0, 0x0fff) | 0x4000,
  40.       // 16 bits, 8 bits for "clk_seq_hi_res",
  41.       // 8 bits for "clk_seq_low",
  42.       // two most significant bits holds zero and one for variant DCE1.1
  43.       mt_rand(0, 0x3fff) | 0x8000,
  44.       // 48 bits for "node"
  45.       mt_rand(0, 0xffff), mt_rand(0, 0xffff), mt_rand(0, 0xffff)
  46.     );
  47.   }
  48.   public static function v5($namespace$name) {
  49.     if(!self::is_valid($namespace)) return false;
  50.     // Get hexadecimal components of namespace
  51.     $nhex = str_replace(array('-','{','}'), ''$namespace);
  52.     // Binary Value
  53.     $nstr = '';
  54.     // Convert Namespace UUID to bits
  55.     for($i = 0; $i < strlen($nhex); $i+=2) {
  56.       $nstr .= chr(hexdec($nhex[$i].$nhex[$i+1]));
  57.     }
  58.     // Calculate hash value
  59.     $hash = sha1($nstr . $name);
  60.     return sprintf('%08s-%04s-%04x-%04x-%12s',
  61.       // 32 bits for "time_low"
  62.       substr($hash, 0, 8),
  63.       // 16 bits for "time_mid"
  64.       substr($hash, 8, 4),
  65.       // 16 bits for "time_hi_and_version",
  66.       // four most significant bits holds version number 5
  67.       (hexdec(substr($hash, 12, 4)) & 0x0fff) | 0x5000,
  68.       // 16 bits, 8 bits for "clk_seq_hi_res",
  69.       // 8 bits for "clk_seq_low",
  70.       // two most significant bits holds zero and one for variant DCE1.1
  71.       (hexdec(substr($hash, 16, 4)) & 0x3fff) | 0x8000,
  72.       // 48 bits for "node"
  73.       substr($hash, 20, 12)
  74.     );
  75.   }
  76.   public static function is_valid($uuid) {
  77.     return preg_match('/^\{?[0-9a-f]{8}\-?[0-9a-f]{4}\-?[0-9a-f]{4}\-?'.
  78.                       '[0-9a-f]{4}\-?[0-9a-f]{12}\}?$/i', $uuid) === 1;
  79.   }
  80. }
  81. // Usage
  82. // Named-based UUID.
  83. $v3uuid = UUID::v3('1546058f-5a25-4334-85ae-e68f2a44bbaf', 'SomeRandomString');
  84. $v5uuid = UUID::v5('1546058f-5a25-4334-85ae-e68f2a44bbaf', 'SomeRandomString');
  85. // Pseudo-random UUID
  86. $v4uuid = UUID::v4();
  87. ?>

这东西完全是意外收获哈。

你想把广告放到这里吗?

发表评论

您必须 登录 才能发表留言!