PeclUuidRandomGenerator.php 807 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * This file is part of the ramsey/uuid library
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. *
  8. * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com>
  9. * @license http://opensource.org/licenses/MIT MIT
  10. */
  11. declare(strict_types=1);
  12. namespace Ramsey\Uuid\Generator;
  13. use function uuid_create;
  14. use function uuid_parse;
  15. use const UUID_TYPE_RANDOM;
  16. /**
  17. * PeclUuidRandomGenerator generates strings of random binary data using ext-uuid
  18. *
  19. * @link https://pecl.php.net/package/uuid ext-uuid
  20. */
  21. class PeclUuidRandomGenerator implements RandomGeneratorInterface
  22. {
  23. public function generate(int $length): string
  24. {
  25. $uuid = uuid_create(UUID_TYPE_RANDOM);
  26. return uuid_parse($uuid);
  27. }
  28. }