美文网首页
生成随机字符串

生成随机字符串

作者: Alex80 | 来源:发表于2020-07-27 15:12 被阅读0次

public function random_str($length)

    {

        $hash = '';

        $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz';

        $max = strlen($chars) - 1;

        mt_srand((double)microtime() * 1000000);

        for($i = 0; $i < $length; $i++)

        {

            $hash .= $chars[mt_rand(0, $max)];

        }

        return $hash;

    }

相关文章

网友评论

      本文标题:生成随机字符串

      本文链接:https://www.haomeiwen.com/subject/iumzlktx.html