PHP生成随机密码的函数
PHP #随机 #函数2014-04-14 21:00
今天分享的这个函数可以生成数字、大小写字母与特殊字符等组合的随机密码。
代码如下:
function yige_rand_pwd($length = 8) { $chars = array_merge(range(0, 9), range('a', 'z'), range('A', 'Z'), array('!', '@', '$', '%', '^', '&', '*')); shuffle($chars); $password = ''; for ($i = 0; $i < 8; $i++) { $password. = $chars[$i]; } return $password; // http://yige.org/ }
相关文章
- 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
- PHP生成唯一标识ID的函数 2014/04/09