Heim  >  Artikel  >  Backend-Entwicklung  >  php生成指定位数(长度)的随机字符串

php生成指定位数(长度)的随机字符串

WBOY
WBOYOriginal
2016-07-25 08:55:261629Durchsuche
  1. /**
  2. * 生成指定长度的字符串
  3. * by bbs.it-home.org
  4. */
  5. function create_random_string($random_length) {
  6. $chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
  7. $random_string = '';
  8. for ($i = 0; $i $random_string .= $chars [mt_rand(0, strlen($chars) - 1)];
  9. }
  10. return $random_string;
  11. }
复制代码

写的简单了点,随机字符串的取值范围在random{0-9,A-Z,a-z}中。

>>> 您可能感兴趣的文章: PHP随机字符串生成函数 php生成随机字符串的函数 PHP生成随机字符串的二个例子 PHP生成随机字符串的两种办法 一个简单的php随机生成字符串函数 很实用的3个PHP随机字符串函数生成器 php生成随机数的例子 php创建可阅读随机字符串的代码 使用php生成一个随机字符串的代码 php生成随机数字和字母的实例代码



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