当前位置:Gxlcms > PHP教程 > php生成指定位数(长度)的随机字符串

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

时间:2021-07-01 10:21:17 帮助过:30人阅读

  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_length; $i++) {
  9. $random_string .= $chars [mt_rand(0, strlen($chars) - 1)];
  10. }
  11. return $random_string;
  12. }

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

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

人气教程排行