欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

PHP 简单生成随机字符串

程序员文章站 2022-07-14 19:50:49
...
<?php
//生成随机字符串
function get_randomstr($lenth = 6) {
    return get_random($lenth, '123456789abcdefghijklmnpqrstuvwxyzABCDEFGHIJKLMNPQRSTUVWXYZ');
}
//产生随机字符串
function get_random($length, $chars = '0123456789') {
    $hash = '';
    $max = strlen($chars) - 1;
    for($i = 0; $i < $length; $i++) {
        $hash .= $chars[mt_rand(0, $max)];
    }
    return $hash;
}
echo get_randomstr(6).'<br>';
echo get_randomstr(7);
?>

 

效果图:
PHP 简单生成随机字符串