首頁  >  文章  >  後端開發  >  PHP隨機字串產生函數

PHP隨機字串產生函數

WBOY
WBOY原創
2016-07-25 08:51:211013瀏覽
  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<$length; $i )
  9. {
  10. $which = mt_rand(0,2);
  11. if ($which === 0)
  12. {
  13. $output .= mt_rand(0,9);
  14. }
  15. elseif ($which === 1)
  16. {
  17. $output .= chr(mt_rand(65,90));
  18. }
  19. else
  20. {
  21. $output .= chr(mt_rand(97,122));
  22. }
  23. }
  24. return $output;
  25. }
复制代码


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn