名站导航为爱好php程序的朋友们提供php相关的教程知识。
一个简单的php随机生成字符串函数
可以指定生成的字符串长度 具体代码如下如下: function rand_str($length, $max=FALSE) { if (is_int($max) && $max > $length) { $length = mt_rand($length, $max); } $output = ''; for ($i=0; $i<$length; $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; } 调用具体实例操作: $randstr = rand_str(16); 名站网址导航好了关于php程序的知识就说到这里希望可以帮助需要的朋友。,很实用的3个PhP程序随机字符串函数生成器