PHP 的常用工具

v0.1.2 2014-08-26 00:04 UTC

This package is not auto-updated.

Last update: 2024-09-24 02:47:17 UTC


README

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();
  }
}