当前位置:Gxlcms > PHP教程 > php生成随机密码函数示例

php生成随机密码函数示例

时间:2021-07-01 10:21:17 帮助过:14人阅读

  1. #生成随机密码
  2. function MakePass($length)
  3. {
  4. $possible = "0123456789!@#$%^&*()_+".
  5. "abcdefghijklmnopqrstuvwxyz".
  6. "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  7. $str = "";
  8. while(strlen($str) < $length)
  9. {
  10. $str .= substr($possible, (rand() % strlen($possible)), 1);
  11. }
  12. return($str);
  13. }

人气教程排行