定制 chonla/randomizr 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

chonla/randomizr

最新稳定版本:0.1.1

Composer 安装命令:

composer require chonla/randomizr

包简介

String randomizer

README 文档

README

String randomizer

API

$rand = new Randomizr;

Use number() to get random string containing only 0 to 9:

$result = $rand->number(10);

Use alphabet() to get random string containing only a to z (both uppercase and lowercase):

$result = $rand->alphabet(10);

Use alphanumeric() to get random string containing only a to z (both uppercase and lowercase) and 0 to 9:

$result = $rand->alphanumeric(10);

Use hexadecimal() to get random string containing only hexadecimal number (0 to f):

$result = $rand->hexadecimal(10);

Use rand() to random a string with arbitary character set and length:

$result = $rand->rand("abc", 10);  // this will return a string containing either a or b or c with length of 10

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-09-11