PHP生成随机密码类分享


Posted in PHP onJune 25, 2014

类代码:

<?php
/**
 * PHP - Password Generator Class
 * Version 1.0.0
 *
 */
 
if (@!is_object($passGen) || !isset($passGen)) {
  $passGen = new Password;
}
 
class Password
{
 
  /**
   * 大写字母 A-Z
   *
   * @var array
   */
  protected $uppercase_chars;
 
  /**
   * 小写字母 a-z
   *
   * @var array
   */
  protected $lowercase_chars;
 
  /**
   * 阿拉伯数字 0-9
   *
   * @var array
   */
  protected $number_chars;
 
  /**
   * 特殊字符
   *
   * @var array
   */
  protected $special_chars;
 
  /**
   * 其他特殊字符
   *
   * @var array
   */
  protected $extra_chars;
 
  /**
   * 最终用来生成密码的所有字符
   *
   * @var array
   */
  protected $chars = array();
 
  /**
   * 密码长度
   *
   * @var array
   */
  public $length;
 
  /**
   * 是否使用大写字母
   *
   * @var boolean
   */
  public $uppercase;
 
  /**
   * 是否使用小写字母
   *
   * @var boolean
   */
  public $lowercase;
 
  /**
   * 是否使用阿拉伯数字
   *
   * @var boolean
   */
  public $number;
 
  /**
   * 是否使用特殊字符
   *
   * @var boolean
   */
  public $special;
 
  /**
   * 是否使用额外的特殊字符
   *
   * @var boolean
   */
  public $extra;
 
  /**
   * 初始化密码设置
   *
   * @param int $length
   */
  function Password($length = 12)
  {
    $this->length = $length;
     
    $this->configure(true, true, true, false, false);
  }
 
  /**
   * 配置
   */
  function configure($uppercase = false, $lowercase = false, $number = false,
            $special = false, $extra = false
  ) {
    $this->chars = array();
 
    $this->upper_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"
                );
    $this->lower_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"
                );
    $this->number_chars = array(
                 "1", "2", "3", "4", "5", "6", "7", "8", "9", "0"
                );
    $this->special_chars = array(
                 "!", "@", "#", "$", "%", "^", "&", "*", "(", ")"
                );
    $this->extra_chars  = array(
                 "[", "]", "{", "}", "-", "_", "+", "=", "<",
                 ">", "?", "/", "`", "~", "|", ",", ".", ";", ":"
                );
 
    if (($this->uppercase = $uppercase) === true) {
      $this->chars = array_merge($this->chars, $this->upper_chars);
    }
    if (($this->lowercase = $lowercase) === true) {
      $this->chars = array_merge($this->chars, $this->lower_chars);
    }
    if (($this->number = $number) === true) {
      $this->chars = array_merge($this->chars, $this->number_chars);
    }
    if (($this->special = $special) === true) {
      $this->chars = array_merge($this->chars, $this->special_chars);
    }
    if (($this->extra = $extra) === true) {
      $this->chars = array_merge($this->chars, $this->extra_chars);
    }
 
    $this->chars = array_unique($this->chars);
  }
   
  /**
   * 从字符列中生成随机密码
   *
   * @return string
   **/
  function generate()
  {
    if (empty($this->chars)) {
      return false;
    }
 
    $hash    = '';
    $totalChars = count($this->chars) - 1;
     
    for ($i = 0; $i < $this->length; $i++) {
      $hash .= $this->chars[$this->random(0, $totalChars)];
    }
 
    return $hash;
  }
 
  /**
   * 生成随机数字
   *
   * @return int
   */
  function random($min = 0, $max = 0)
  {
    $max_random = 4294967295;
 
    $random = uniqid(microtime() . mt_rand(), true);
    $random = sha1(md5($random));
 
    $value = substr($random, 0, 8);
    $value = abs(hexdec($value));
 
    if ($max != 0) {
      $value = $min + ($max - $min + 1) * $value / ($max_random + 1);
    }
 
    return abs(intval($value));
  }
}

调用:

<?php
 
include_once 'password.class.php';
 
echo $passGen->generate();
 
//FS4yq74e2LeE
PHP 相关文章推荐
Windows下PHP5和Apache的安装与配置
Sep 05 PHP
推荐php模板技术[转]
Jan 04 PHP
php 接口类与抽象类的实际作用
Nov 26 PHP
php fputcsv命令 写csv文件遇到的小问题(多维数组连接符)
May 24 PHP
有关PHP中MVC的开发经验分享
May 17 PHP
php分页思路以及在ZF中的使用
May 30 PHP
php操作MongoDB基础教程(连接、新增、修改、删除、查询)
Mar 25 PHP
PHP中实现crontab代码分享
Mar 26 PHP
strpos() 函数判断字符串中是否包含某字符串的方法
Jan 16 PHP
PHP从零开始打造自己的MVC框架之路由类实现方法分析
Jun 03 PHP
如何通过Apache在本地配置多个虚拟主机
Jul 29 PHP
利用PHP内置SERVER开启web服务(本地开发使用)
Mar 09 PHP
PHP网页游戏学习之Xnova(ogame)源码解读(十二)
Jun 25 #PHP
PHP网页游戏学习之Xnova(ogame)源码解读(十一)
Jun 25 #PHP
JavaScript创建命名空间的5种写法
Jun 24 #PHP
PHP获取windows登录用户名的方法
Jun 24 #PHP
PHP获取MySql新增记录ID值的3种方法
Jun 24 #PHP
PHP判断表单复选框选中状态完整例子
Jun 24 #PHP
PHP网页游戏学习之Xnova(ogame)源码解读(十)
Jun 24 #PHP
You might like
PHP实现图片上传并压缩
2015/12/22 PHP
微信支付的开发流程详解
2016/09/13 PHP
PHP获取文本框、密码域、按钮的值实例代码
2017/04/19 PHP
解决Laravel5.5下的toArray问题
2019/10/15 PHP
基于PHP实现短信验证码发送次数限制
2020/07/11 PHP
js修改table中Td的值(定义td的单击事件)
2013/01/10 Javascript
javascript/jquery获取地址栏url参数的方法
2014/03/05 Javascript
jquery实现保存已选用户
2014/07/21 Javascript
jquery实现的鼠标下拉滚动置顶效果
2014/07/24 Javascript
js常用系统函数用法实例分析
2015/01/12 Javascript
jQuery实现渐变弹出层和弹出菜单的方法
2015/02/20 Javascript
JS查找字符串中出现次数最多的字符
2016/09/05 Javascript
JS实现的计数排序与基数排序算法示例
2017/12/04 Javascript
浅谈es6 javascript的map数据结构
2017/12/14 Javascript
JS数组方法reduce的用法实例分析
2020/03/03 Javascript
原生js实现自定义滚动条
2021/01/20 Javascript
搭建Python的Django框架环境并建立和运行第一个App的教程
2016/07/02 Python
Python使用re模块实现信息筛选的方法
2018/04/29 Python
利用python提取wav文件的mfcc方法
2019/01/09 Python
Python中最好用的命令行参数解析工具(argparse)
2019/08/23 Python
Pytorch 定义MyDatasets实现多通道分别输入不同数据方式
2020/01/15 Python
如何基于Python实现数字类型转换
2020/02/07 Python
pycharm不以pytest方式运行,想要切换回普通模式运行的操作
2020/09/01 Python
CSS3旋转——彩色扇子兼容firefox浏览器
2013/06/04 HTML / CSS
AmazeUi Tree(树形结构) 应用小结
2020/08/17 HTML / CSS
销售经理工作职责范文
2013/12/03 职场文书
贷款担保申请书
2014/05/20 职场文书
社区班子个人对照检查材料思想汇报
2014/10/07 职场文书
财务整改报告范文
2014/11/05 职场文书
锅炉工岗位职责
2015/02/13 职场文书
音乐会主持人开场白
2015/05/28 职场文书
小学语文国培研修日志
2015/11/13 职场文书
领导干部学习三严三实心得体会
2016/01/05 职场文书
《梅花魂》教学反思
2016/02/18 职场文书
基于python定位棋子位置及识别棋子颜色
2021/07/26 Python
python 判断字符串当中是否包含字符(str.contain)
2022/06/01 Python