Heim >Backend-Entwicklung >PHP-Tutorial >PHP随机字符串生成函数

PHP随机字符串生成函数

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-25 08:51:211058Durchsuche
  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. }
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn