qianlong/snowflake

An distributed ID generation class

v1.0 2021-05-17 06:27 UTC

This package is auto-updated.

Last update: 2024-04-25 10:01:37 UTC


README

说明

分布式ID生成类

<?php

require_once "./vendor/autoload.php";
use QianLong\SnowFlake\SnowFlake;

class Index
{
    public function test():
    {
        echo (new SnowFlake)->createId();
    }
}