php產生一個安全隨機的密碼程式

來源:互聯網
上載者:User
php產生一個隨機的密碼,方便快捷,可以隨機產生安全可靠的密碼,希望此文章對大家會有所協助.

php產生一個安全隨機的密碼程式執行個體代碼如下:

<?php

header("Content-type:text/html;charset=utf-8");

function getRandPass($length = 6){

$password = '';

//將你想要的字元添加到下面字串中,預設是數字0-9和26個英文字母

$chars = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";

$char_len = strlen($chars);

for($i=0;$i<$length;$i++){

$loop = mt_rand(0, ($char_len-1));

//將這個字串當作一個數組,隨機取出一個字元,並迴圈拼接成你需要的位元

$password .= $chars[$loop];

}

return $password;

}

echo getRandPass(12); //隨機產生一個12位元的密碼

//開原始碼phpfensi.com

?>

例2,與第一個有一點像

1、預置一個的字串 $chars,包括 a – z,A – Z,0 – 9,以及一些特殊字元

2、在 $chars 字串中隨機取一個字元

3、重複第二步 n 次,可得長度為 n 的密碼

執行個體代碼如下:

function generate_password( $length = 8 ) {

// 密碼字元集,可任意添加你需要的字元

$chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()-_ []{}<>~`+=,.;:/?|';

$password = '';

for ( $i = 0; $i < $length; $i++ )

{

// 這裡提供兩種字元擷取方式

// 第一種是使用 substr 截取$chars中的任意一位字元;

// 第二種是取字元數組 $chars 的任意元素

// $password .= substr($chars, mt_rand(0, strlen($chars) - 1), 1);

$password .= $chars[ mt_rand(0, strlen($chars) - 1) ];

}

return $password;

}

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.