개발 꿀팁/PHP

PHP가 난수를 생성하는 몇 가지 방법

Jammie 2022. 7. 6. 13:56
반응형

첫 번째 방법은 mt_rand()를 사용합니다

function GetRandStr($length){
$str='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
$len=strlen($str)-1;
$randstr='';
for($i=0;$i<$length;$i++){
$num=mt_rand(0,$len);
$randstr .= $str[$num];
}
return $randstr;
}
$number=GetRandStr(6);
echo $number;

두 번째 방법(가장 빠른 방법)

function make_password( $length = 8 )
{
    // 암호 문자 집합, 원하는 문자를 추가할 수 있습니다
    $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', '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', 
    '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '!', 
    '@','#', '$', '%', '^', '&', '*', '(', ')', '-', '_', 
    '[', ']', '{', '}', '<', '>', '~', '`', '+', '=', ',', 
    '.', ';', ':', '/', '?', '|');
    // $chars에서 무작위로 $length 배열 요소 키 이름 가져오기
    $keys = array_rand($chars, $length); 
    $password = '';
    for($i = 0; $i < $length; $i++)
    {
        // $length 배열 요소를 문자열로 연결
        $password .= $chars[$keys[$i]];
    }
    return $password;
}

제3종 타임 스탬프

function get_password( $length = 8 ) 
{
    $str = substr(md5(time()), 0, $length);//md5 암호화, time() 현재 타임스탬프
    return $str;
}

네 번째 혼란스러운 문자열

function getrandstr(){
$str='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890';
$randStr = str_shuffle($str);//문자열을 흐트러뜨리다
$rands= substr($randStr,0,6);//substr(string,start,length);문자열의 일부분을 되돌려줍니다
return $rands;
}

5 // 인증번호 만들기 시작 (직접 함수로 생성되어 편리하고 빠름)

$code = rand(10000, 99999);

phpmt_rand 0~1 난수 생성 효과 비교

lcg_value 설명

float lcg_value (void)
lcg_value() 반환 범위 (0, 1)의사 난수. 본 함수가 조합되었습니다.주기: 2^31 - 85 및 2^31 - 249 두 개의 잉여 발생기.본 함수의 주기는 이 두 소수의 곱과 같다.

반환: (0, 1) 의 의사 난수입니다.

<?php
for($i=0; $i<5; $i++){
    echo lcg_value().PHP_EOL;
}
?>

출력:

0.11516515851995
0.064684551575297
0.68275174031189
0.55730746529099
0.70215008878091

0~1 난수 생성 방법 2가지 비교

1.실행시간 비교
10만 번 실행 mt_rand() 기반mt_getrandmax() 알고리즘의 실행 시간

<?php
/**
 * 0~1 난수 생성
 * @param  Int   $min
 * @param  Int   $max
 * @return Float
 */
function randFloat($min=0, $max=1){
    return $min + mt_rand()/mt_getrandmax() * ($max-$min);
}
 
// 획득microtime
function get_microtime(){
    list($usec, $sec) = explode(' ', microtime());
    return (float)$usec + (float)$sec;
}
 
// 기록 시작 시간
$starttime = get_microtime();
 
// 10만 번 실행 난수 획득
for($i=0; $i<100000; $i++){
    randFloat();
}
 
// 기록 종료 시간
$endtime = get_microtime();
 
// 출력 실행 시간
printf("run time %f ms\r\n", ($endtime-$starttime)*1000);
?>

출력: run time 266.893148ms

10만 번 lcg_value() 실행 시간

<?php
// 획득microtime
function get_microtime(){
    list($usec, $sec) = explode(' ', microtime());
    return (float)$usec + (float)$sec;
}
 
 
// 기록 시작 시간
$starttime = get_microtime();
 
 
// 10만 번 실행 난수 획득
for($i=0; $i<100000; $i++){
    lcg_value();
}
 
 
// 기록 종료 시간
$endtime = get_microtime();
 
 
// 출력 실행 시간
printf("run time %f ms\r\n", ($endtime-$starttime)*1000);
?>

출력: run time 86.178064ms

lcg_value()는 직접 p이므로 실행 시간 비교hp 네이티브 메서드, mt_rand()와 mt_getrandmax()는 두 가지 메서드를 호출하여 계산해야 하므로 lcg_value()의 실행 시간이 약 3배 빠르다.


2.랜덤효과 비교
mt_rand()와 mt_getrandmax 기반() 알고리즘의 무작위 효과

<?php
/**
 * 0~1 난수 생성
 * @param  Int   $min
 * @param  Int   $max
 * @return Float
 */
function randFloat($min=0, $max=1){
    return $min + mt_rand()/mt_getrandmax() * ($max-$min);
}
 
 
header('content-type: image/png');
$im = imagecreatetruecolor(512, 512);
$color1 = imagecolorallocate($im, 255, 255, 255);
$color2 = imagecolorallocate($im, 0, 0, 0);
for($y=0; $y<512; $y++){
    for($x=0; $x<512; $x++){
        $rand = randFloat();
        if(round($rand,2)>=0.5){
            imagesetpixel($im, $x, $y, $color1);
        }else{
            imagesetpixel($im, $x, $y, $color2);
        }
    }
}
imagepng($im);
imagedestroy($im);
?>

lcg_value()의 랜덤 효과

<?php
header('content-type: image/png');
$im = imagecreatetruecolor(512, 512);
$color1 = imagecolorallocate($im, 255, 255, 255);
$color2 = imagecolorallocate($im, 0, 0, 0);
for($y=0; $y<512; $y++){
    for($x=0; $x<512; $x++){
        $rand = lcg_value();
        if(round($rand,2)>=0.5){
            imagesetpixel($im, $x, $y, $color1);
        }else{
            imagesetpixel($im, $x, $y, $color2);
        }
    }
}
imagepng($im);
imagedestroy($im);
?>

 

반응형