首页 > 开发 > PHP > 正文

PHP生成自定义长度随机字符串的函数分享

2024-05-04 23:23:15
字体:
来源:转载
供稿:网友

php随机生成字符串可以自己定义自己所需要的长度,在实际应用开发中,经常遇到。

复制代码 代码如下:


//随机生成字符串
function random($length) {
     srand(date("s"));
     $possible_charactors = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
     $string = "";
     while(strlen($string)<$length) {
          $string .= substr($possible_charactors,(rand()%(strlen($possible_charactors))),1);
     }
     return($string);
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表