コード例 #1
0
ファイル: uuid.php プロジェクト: wwxgitcat/habari
 /**
  * Create a UUID and return its canonical hexadecimal representation.
  *
  * @return the canonical hexadecimal representation of the generated UUID
  */
 public static function get()
 {
     $uuid = new UUID();
     return $uuid->get_hex();
 }