qianlong / snowflake
An distributed ID generation class
v1.0
2021-05-17 06:27 UTC
Requires
- php: >=7.1.0
This package is auto-updated.
Last update: 2025-03-25 11:56:21 UTC
README
说明
分布式ID生成类
<?php
require_once "./vendor/autoload.php";
use QianLong\SnowFlake\SnowFlake;
class Index
{
public function test():
{
echo (new SnowFlake)->createId();
}
}