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
其他信息
- 授权协议: MIT
- 更新时间: 2015-09-11