您的位置 首页

php 随机生成数字字母组合

直接上代码: function getRandomString($len, $chars=null) { if…

直接上代码:

function getRandomString($len, $chars=null)
{
    if (is_null($chars)) {
        $chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
    }
    mt_srand(10000000*(double)microtime());
    for ($i = 0, $str = '', $lc = strlen($chars)-1; $i < $len; $i++) {
        $str .= $chars[mt_rand(0, $lc)];
    }
    return $str;
}

例如随机生成 2 位 字母和数字组合

只需调用函数 并传参2即可。

echo getRandomString(2);

如果仅仅是生成小写字母你可以使用类似方法

 echo chr(mt_rand(65, 90);

大写字母

 echo chr(mt_rand(97, 122));

此文章通过 python 爬虫创建,原文是自己的csdn 地址: php 随机生成数字字母组合

本文来自网络,不代表找知博客立场,转载请注明出处:http://zhaozhiyong.cn/95.html

作者: 于老大

关注微博
返回顶部
//