jkingweb/druuid
最新稳定版本:4.0.0
Composer 安装命令:
composer require jkingweb/druuid
包简介
DrUUID RFC 9562 library for PHP
关键字:
README 文档
README
An RFC 9562 (UUID) implementation for PHP.
Usage
DrUUID's API has been designed to be as absolutely simple to use as possible. sGenerating a UUID is as simple as issuing a single method call:
<?php use JKingWeb\DrUUID\UUID; echo UUID::mint(); ?>
Compliance
DrUUID fully complies with RFC 9562, and therefore supports all specified types of UUIDs:
<?php use JKingWeb\DrUUID\UUID; echo UUID::mint(1)."\n"; echo UUID::mint(3, "some identifier", $private_namespace)."\n"; echo UUID::mint(4)."\n"; echo UUID::mint(5, "some identifier", $private_namespace)."\n"; echo UUID::mint(6)."\n"; echo UUID::mint(7)."\n";
More information
DrUUID includes an extensive and exhaustive HTML manual. A complete break-down of features and their use is available therein.
统计信息
- 总下载量: 29.77k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-02-09