承接 sebastian/uuid 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

sebastian/uuid

最新稳定版本:1.0.2

Composer 安装命令:

composer require sebastian/uuid

包简介

Function for generating a UUID (as string)

关键字:

README 文档

README

Latest Stable Version CI Status codecov

sebastian/uuid

This package provides a single function: uuid(). This function uses PHP's random_bytes() function to generate a string that contains a 16-byte number written in hexadecimal and divided into five groups of characters (8-4-4-4-12).

Strings generated using the uuid() function can be used as Universally Unique Identifiers (UUIDs) in certain contexts.

Installation

You can add this library as a local, per-project dependency to your project using Composer:

composer require sebastian/uuid

If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency:

composer require --dev sebastian/uuid

Usage

<?php declare(strict_types=1);
use function SebastianBergmann\Uuid\uuid;

var_dump(uuid());
string(36) "67b14e2a-17a4-43f7-aba5-859f7fc07b69"

统计信息

  • 总下载量: 886
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 27
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 27
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2023-03-21