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

PHP随机字符串生成函数

程序员文章站 2024-01-17 23:03:10
...
  1. function random_string($length, $max=FALSE)
  2. {
  3. if (is_int($max) && $max > $length)
  4. {
  5. $length = mt_rand($length, $max);
  6. }
  7. $output = '';
  8. for ($i=0; $i {
  9. $which = mt_rand(0,2);
  10. if ($which === 0)
  11. {
  12. $output .= mt_rand(0,9);
  13. }
  14. elseif ($which === 1)
  15. {
  16. $output .= chr(mt_rand(65,90));
  17. }
  18. else
  19. {
  20. $output .= chr(mt_rand(97,122));
  21. }
  22. }
  23. return $output;
  24. }
复制代码