首页 > 学院 > 逻辑算法 > 正文

雪花算法及运用PHP

2020-03-22 18:56:32
字体:
来源:转载
供稿:网友

这篇文章主要介绍了关于雪花算法及运用PHP,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

/** *  分布式 id 生成类     组成: <毫秒级时间戳+机器id+序列号> *  默认情况下41bit的时间戳可以支持该算法使用到2082年,10bit的工作机器id可以支持1023台机器,序列号支持1毫秒产生4095个自增序列id *  @author zhangqi */html' target='_blank'>class IdCreate{    const EPOCH = 1479533469598;    //开始时间,固定一个小于当前时间的毫秒数    const max12bit = 4095;        const max41bit = 1099511627775;        static $machineId = null;      // 机器id    public static function machineId($mId = 0)    {        self::$machineId = $mId;    }    public static function createOnlyId()    {        // 时间戳 42字节        $time = floor(microtime(true) * 1000);        // 当前时间 与 开始时间 差值        $time -= self::EPOCH;        // 二进制的 毫秒级时间戳        $base = decbin(self::max41bit + $time);        // 机器id  10 字节        if(!self::$machineId)        {            $machineid = self::$machineId;        }        else        {            $machineid = str_pad(decbin(self::$machineId), 10, "0", STR_PAD_LEFT);        }        // 序列数 12字节        $random = str_pad(decbin(mt_rand(0, self::max12bit)), 12, "0", STR_PAD_LEFT);        // 拼接        $base = $base.$machineid.$random;        // 转化为 十进制 返回        return bindec($base);    }
运用
 $this->load->library('IdCreate');             $machineId = 1;             $peopleData['id']  = $cast_id = IdCreate::createOnlyId($machineId);

相关推荐:

PHP的AES加密算法实例详解

以上就是雪花算法及运用PHP的详细内容,更多请关注 其它相关文章!

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表