首頁 > 後端開發 > php教程 > PHP隨機產生不重複的8位元卡號(數字)和卡密(字串)

PHP隨機產生不重複的8位元卡號(數字)和卡密(字串)

藏色散人
發布: 2023-04-07 22:28:01
轉載
6495 人瀏覽過

一、產生不重複的隨機數字,可自訂長度

/**
 * 生成不重复的随机数字
 * @param  int $start  需要生成的数字开始范围
 * @param  int $end    结束范围
 * @param  int $length 需要生成的随机数个数
 * @return number      生成的随机数
 */
function getRandNumber($start=0,$end=9,$length=8){
//初始化变量为0
$connt = 0;
//建一个新数组
$temp = array();
while($connt < $length){
//在一定范围内随机生成一个数放入数组中
$temp[] = mt_rand($start, $end);
//$data = array_unique($temp);
//去除数组中的重复值用了“翻翻法”,就是用array_flip()把数组的key和value交换两次。这种做法比用 array_unique() 快得多。
$data = array_flip(array_flip($temp));
//将数组的数量存入变量count中
$connt = count($data);
}
//为数组赋予新的键名
shuffle($data);
//数组转字符串
$str=implode(",", $data);
//替换掉逗号
$number=str_replace(&#39;,&#39;, &#39;&#39;, $str);
return $number;
}
登入後複製

 二、隨機產生不重複的8位元卡密

function makeCardPassword() {
        $code = &#39;ABCDEFGHIJKLMNOPQRSTUVWXYZ&#39;;
        $rand = $code[rand(0,25)]
            .strtoupper(dechex(date(&#39;m&#39;)))
            .date(&#39;d&#39;).substr(time(),-5)
            .substr(microtime(),2,5)
            .sprintf(&#39;%02d&#39;,rand(0,99));
        for(
            $a = md5( $rand, true ),
            $s = &#39;0123456789ABCDEFGHIJKLMNOPQRSTUV&#39;,
            $d = &#39;&#39;,
            $f = 0;
            $f < 8;
            $g = ord( $a[ $f ] ),
            $d .= $s[ ( $g ^ ord( $a[ $f + 8 ] ) ) - $g & 0x1F ],
            $f++
        );
        return  $d;
}
登入後複製

 相關推薦:《PHP教學

以上是PHP隨機產生不重複的8位元卡號(數字)和卡密(字串)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
php
來源:csdn.net
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板