PHP生成随机字符串_PHP教程
推荐:PHP实例:一无限分类的处理类PHP代码:-------------------------------------------------------------------------------- ?php /* 名称: 对分类操作的业务逻辑封装 * 说明: 本类中引用的其它类(DB、Table、Item)均未提供,所以本类只能做个参考,不能直接应用 * 不是本人小气不提供其
PHP生成随机字符串的函数,下面是我在网上找到的2个关于PHP随机字符串的函数,希望大家喜欢。
< ?php
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", "0", "1", "2",
"3", "4", "5", "6", "7", "8", "9"
);
charsLen = count(chars) - 1;
shuffle(chars); // 将数组打乱
output = "";
for (i=0; i<len; i++)
{
output .= chars[mt_rand(0, charsLen)];
}
return output;
}
str = genRandomString(25);
str .= "<br />";
str .= genRandomString(25);
str .= "<br />";
str .= genRandomString(25);
echo str;
?>
<?php
/* Generate Password
* Length : 8
*/
str = "0123456789abcdefghijklmnopqrstuvwxyz"; // 输出字符集
n = 8; // 输出串长度
len = strlen(str)-1;
for(j=0 ; j<200 ; j++){
for(i=0 ; i<n; i++){
s .= str[rand(0,len)];
}
echo s . "<br/>";
s = "";
}
?>
分享:PHP实例:PHP批量生成缩略图到今天我学PHP已经快一年了。不过小弟资质相当有限,一直没有做出什么好东西来。在工作中有时需要把大批量的图片变小,这是一件很简单但很无聊的事情。有一天突发奇想,怎么不用PHP来做一个小程序呢?于是昨天完成了一个批量生成缩略图的小程序。现在发布出
- 相关链接:
- 教程说明:
PHP教程-PHP生成随机字符串。