首页 >后端开发 >php教程 >PHP随机字符串生成函数

PHP随机字符串生成函数

WBOY
WBOY原创
2016-07-25 08:51:211022浏览
  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. }
复制代码


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn