qianlong/snowflake

An distributed ID generation class

Installs: 126

Dependents: 0

Suggesters: 0

Security: 0

pkg:composer/qianlong/snowflake

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

This package is auto-updated.

Last update: 2025-10-25 13:22:58 UTC


README

说明

分布式ID生成类

<?php

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

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