Home > php教程 > php手册 > php生成随机密码的范例

php生成随机密码的范例

WBOY
Release: 2016-06-06 19:56:46
Original
1285 people have browsed it

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 php生成随机密码的范例,这个方法比较新颖,与网上流传的各种生成随机密码的方法不同,可以指定长度,与进行简单的特殊设定。 php生成随机密码的范例,供大家学习参考。 代码示例: ?php /** 自动生

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

  php生成随机密码的范例,这个方法比较新颖,与网上流传的各种生成随机密码的方法不同,可以指定长度,与进行简单的特殊设定。

  php生成随机密码的范例,供大家学习参考。

  代码示例:

  

  /**

  自动生成密码

  */

  function password(length, special) {

  var iteration = 0;

  var password = "";

  var randomNumber;

  if(special == undefined){

  var special = false;

  }

  while(iteration

  randomNumber = (Math.floor((Math.random() * 100)) % 94) + 33;

  if(!special){

  if ((randomNumber >=33) && (randomNumber

  if ((randomNumber >=58) && (randomNumber

  if ((randomNumber >=91) && (randomNumber

  if ((randomNumber >=123) && (randomNumber

  }

  iteration++;

  password += String.fromCharCode(randomNumber);

  }

  return password;

  }

  ?>

  使用方法:

  代码示例:

  

  /**

  随机密码 调用示例

  */

  password(8);

  // Outputs: Yrc7TxX3

  password(12, true);

  //Outputs: C}4_ege!PM

  ?>

php生成随机密码的范例

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template