PHP随机字符串生成函数 程序员文章站 2022-05-21 08:31:18 ... function random_string($length, $max=FALSE) { if (is_int($max) && $max > $length) { $length = mt_rand($length, $max); } $output = ''; for ($i=0; $i { $which = mt_rand(0,2); if ($which === 0) { $output .= mt_rand(0,9); } elseif ($which === 1) { $output .= chr(mt_rand(65,90)); } else { $output .= chr(mt_rand(97,122)); } } return $output; } 复制代码 相关标签: PHP随机字符串生成函数 上一篇: JQuery fileupload插件实现文件上传功能 下一篇: php+html实现聊天室 推荐阅读 C#生成随机字符串的实例 php的数组与字符串的转换函数整理汇总 浅析51个PHP处理字符串的函数 PHP图片等比例缩放生成缩略图函数分享 php截取字符串函数substr,iconv_substr,mb_substr示例以及优劣分析 PHP内置函数生成随机数实例 php将字符串随机分割成不同长度数组的方法 php数组转字符串函数有哪些(最实用的2种方法) php支持中文字符串分割的函数 php数组转字符串函数有哪些(最实用的2种方法)