PHP 的常用工具
github.com/andytruong/uuid
源代码
问题
安装: 28
依赖: 0
建议者: 0
安全: 0
星星: 8
关注者: 3
分支: 2
Requires
Requires (Dev)
None
Suggests
Provides
Conflicts
Replaces
GPL-2.0 f104fb416246926bf2b0d69ab98b3e41b1ad4d1f
generatoruuid
This package is not auto-updated.
Last update: 2024-09-24 02:47:17 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(); } }