eonx-com/easy-random
Composer 安装命令:
composer require eonx-com/easy-random
包简介
Provides easy way to generate random values (string, int, uuids, ...)
README 文档
README
---eonx_docs--- title: Introduction weight: 0 ---eonx_docs---
Do you need to generate random and unique values? This package is for you!
- Strings
- Numbers
- UUIDs
All the randomness you need!
Require package (Composer)
The recommended way to install this package is to use Composer:
$ composer require eonx-com/easy-random
Usage
Integers
// Will generate a random integer between 0 and 20 (both included) $myNumber = (new \EonX\EasyRandom\Generator\RandomGenerator(...))->integer(0, 20);
Strings
The random generator allows you to control the length, and the composition of the generated random strings via a nice fluent interface:
$myString = (new \EonX\EasyRandom\Generator\RandomGenerator(...)) ->string(16) ->excludeSimilar() // Will exclude similar characters ->excludeVowel() // Will exclude vowels, nice trick to avoid "bad words" in generated random strings ->includeNumeric(); // Include 0-9 numbers
Do you need to generate random strings for your end users?
// Will generate "user friendly" random string: // - exclude ambiguous characters // - exclude symbols // - exclude vowels // - include numeric // - include uppercase $reference = (new \EonX\EasyRandom\Generator\RandomGenerator(...)) ->string(16) ->userFriendly();
UUID
The random generator allows you to generate UUID.
This package comes with built-in implementations for: symfony/uid.
If you want to use your own, then you will need to make sure it implements EonX\EasyRandom\Generator\UuidGeneratorInterface.
$uuid = (new \EonX\EasyRandom\Generator\RandomGenerator(...))->uuid();
eonx-com/easy-random 适用场景与选型建议
eonx-com/easy-random 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.22M 次下载、GitHub Stars 达 3, 最近一次更新时间为 2020 年 06 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 eonx-com/easy-random 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 eonx-com/easy-random 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.22M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 11
- 依赖项目数: 5
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-06-11