PHP随机字符串生成函数

发布时间:2020-03-22编辑:脚本学堂
PHP生成随机字符串的函数
PHP生成随机字符串的函数,可自定义生成的字符串长度
复制代码 代码如下:
function random_string($length, $max=FALSE)
{
 if (is_int($max) && $max > $length)
  {
    $length = mt_rand($length, $max);
  }
  $output = '';
  
  for ($i=0; $i<$length; $i++)
  {
    $which = mt_rand(0,2);
    
    if ($which === 0)
    {
      $output .= mt_rand(0,9);
    }
    elseif ($which === 1)
    {
      $output .= chr(mt_rand(65,90));
    }
    else
    {
      $output .= chr(mt_rand(97,122));
    }
  }
  return $output;
}