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

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

程序员文章站 2023-11-13 11:21:16
php随机生成字符串可以自己定义自己所需要的长度,在实际应用开发中,经常遇到。复制代码 代码如下://随机生成字符串function random($length) {&n...

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);
}