LoliPHP/helper/uuid.php

13 行
386 B
PHP
Raw 通常表示 履歴

2022-03-30 19:14:21 +09:00
<?php
function uuid () {
return sprintf(
2022-10-25 18:09:58 +09:00
"%04x%04x-%04x-%04x-%04x-%04x%04x%04x",
2022-03-30 19:14:21 +09:00
mt_rand(0, 0xffff), mt_rand(0, 0xffff), // 32bitlow
mt_rand(0, 0xffff), // 16bitmid
mt_rand(0, 0x0fff) | 0x4000, // 16bithigh
mt_rand(0, 0x3fff) | 0x8000, // 16bit|8bithigh|low
mt_rand(0, 0xffff), mt_rand(0, 0xffff), mt_rand(0, 0xffff) // 48bitnode
);
}
?>