当前位置:首页 > PHP > php相关文章

php从字符串中获取10个随机字符的方法-生成随机数

2021-03-09 来源:程序员笔记 作者:无名网

生成10随机字符串函数

function get_rand()
    {
        $str = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#%^*_';
        $len = strlen($str) - 1;
        $rand = '';        for ($i = 0; $i < 10; $i++) {
            $num = mt_rand(0, $len);
            $rand .= $str[$num];
        }        echo $rand;
    }

mt_rand

【用法】mt_rand   ( int $min   , int $max   ) : int

【作用】生成更好的随机数(官方解释)

相关内容: 随机数 字符串
『 猜你喜欢 』