예제 #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();
 }