PHP生成随机字符串的函数
PHP #随机 #函数2014-04-15 22:18
这玩意简单,贴代码时间,下面这个函数只有一个参数,设置随机字符串的长度。
function yige_randStr($len = 6) { $chars = 'ABDEFGHJKLMNPQRSTVWXYabdefghijkmnpqrstvwxy23456789#%*'; // characters to build the password from mt_srand((double) microtime() * 1000000 * getmypid()); // http://yige.org/ seed the random number generater (must be done) $password = ''; while (strlen($password) < $len) $password. = substr($chars, (mt_rand() % strlen($chars)), 1); return $password; }
相关文章
- PHP生成随机密码的函数 2014/04/14
- PHP计算时间差的方法 2014/04/13
- PHP的SQL注入式攻击介绍 2014/04/13
- php过滤危险html的代码 2014/04/13
- PHP获取文件大小的方法 2014/04/13
- PHP生成唯一订单号的方法 2014/04/13
- PHP中header函数的常用方法 2014/04/13
- PHP用header强制下载时IE文件名中文乱码问题解决方法 2014/04/09
- PHP 5.4不对中文json编码的方法 2014/04/09
- PHP将数字金额替换为人民币中文大写的函数 2014/04/09