PHP 常用工具
github.com/atphp/uuid
源代码
问题
安装: 220
依赖者: 0
建议者: 0
安全: 0
星标: 8
关注者: 3
分支: 2
开放问题: 0
Requires
Requires (Dev)
None
Suggests
Provides
Conflicts
Replaces
GPL-2.0 f104fb416246926bf2b0d69ab98b3e41b1ad4d1f
generatoruuid
This package is auto-updated.
Last update: 2024-09-12 20:14:23 UTC
PHP UUID 生成器包装器,需要 PHP >= 5.4,代码来自 Drupal 8。
<?php // Use inside your function $uuid = AndyTruong\Uuid\Uuid::getGenerator()->generate(); // Use inside your library class MyClass { public function myMethod(\AndyTruong\Uuid\UuidInterface $uuid_maker) { $uuid = $uuid_maker->generate(); } }