php

位置:IT落伍者 >> php >> 浏览文章

PHP随机获得字符代码


发布日期:2023年11月16日
 
PHP随机获得字符代码
<?php
//获取随机字符 此函数区分字符大小写 如果不区分大小写可加入函数strtolower
function genRandomString($len)
{
$chars = array(
"a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k"
"l" "m" "n" "o" "p" "q" "r" "s" "t" "u" "v"
"w" "x" "y" "z" "A" "B" "C" "D" "E" "F" "G"
"H" "I" "J" "K" "L" "M" "N" "O" "P" "Q" "R"
"S" "T" "U" "V" "W" "X" "Y" "Z" "" "" ""
"" "" "" "" "" "" ""
);
$charsLen = count($chars) ;
shuffle($chars);// 将数组打乱
$output = "";
for ($i=; $i<$len; $i++)
{
$output = $chars[mt_rand( $charsLen)]; //获得一个数组元素
}
return $output;
}
$str = genRandomString();
echo $str;
?>
               

上一篇:php xml常用函数的集合

下一篇:php网站提示“您不具备查...资源进行了配置”的解决方法