首页 > 程序资源 > PHP生成不重复的随机UID,UUID,GUID

PHP生成不重复的随机UID,UUID,GUID

<?php function create_guid(){
    $charid = strtoupper(md5(uniqid(mt_rand(), true)));
    $uuid = substr($charid, 0, 8).'-'.substr($charid, 8, 4).'-'
        .substr($charid,12, 4).'-'.substr($charid,16, 4).'-'
        .substr($charid,20,12);
    return $uuid;
} ?>

可以生成全球唯一不会重复的UUID序号。

上一篇: [新技能]一键解除网页右键限制

下一篇: [玩]极客学院领70天VIP小脚本。

最近回复

标签