(수정) 영문 대문자 포함 시리얼 생성

<?

//지정된 자릿수의 랜덤한 숫자를 반환합니다. 최대 10까지 가능합니다. 4 이면 1000 에서 9999 사이의 랜덤 숫자
function get_rand_number($len=4) {

    if (empty($len) || !is_int($len)) $len = 4;
    else if ($len < 0) $len = abs($len);
    if ($len > 10) $len = 10;

    return rand(bcpow(10, $len - 1), bcadd(bcpow(10, $len), -1));
}

//지정된 자릿수의 숫자로된 시리얼을 반환합니다. - 를 포함하고 싶지 않을때는 $cut 이 $len 보다 크거나 같으면 됩니다.
function get_serial($len=16, $cut=4, $hipen='-'){

    if (empty($len) || !is_int($len)) $len = 16;
    else if ($len < 0) $len = abs($len);

    if (empty($cut) || !is_int($cut)) $cut = 4;
    else if ($cut < 0) $cut = abs($cut);

    list($usec, $sec) = explode(' ', microtime());

    $serial = str_replace('.', '', (string)bcmul(bcmul((float)$usec * 1000000 , (float)$sec) , get_rand_number(4)));
    $serial_length = strlen($serial);
    $sub = $len - $serial_length;

    if ($sub > 0) $serial .= (string)get_rand_number($sub);
    else if ($sub < 0) $serial = substr($serial, 0, $len);

    return preg_replace("`(.{" . $cut . "})`", "$1" . $hipen, $serial, floor(($len-1) / $cut));
}

//넘어온 세자리수를 36진수로 변환
function get_simple_36($m){

    $str = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
    $div = floor($m[0] / 36);
    $rest = $m[0] % 36;

    return $str[$div] . $str[$rest];
}

//지정된 자릿수의 숫자와 영문으로된 시리얼을 반환합니다. - 를 포함하고 싶지 않을때는 $cut 이 $len 보다 크거나 같으면 됩니다.
function get_serial_mix($len=16, $cut=4, $hipen='-'){

    if (empty($len) || !is_int($len)) $len = 16;
    else if ($len < 0) $len = abs($len);

    if (empty($cut) || !is_int($cut)) $cut = 4;
    else if ($cut < 0) $cut = abs($cut);

    $len2 = (int)($len * 3 / 2);
    if ($len2 % 2 == 1) $len2 += 1;

    $serial = get_serial($len2, $len2, $hipen);

    $serial = substr(preg_replace_callback("`.{3}`", "get_simple_36", $serial), 0, $len);

    return preg_replace("`(.{" . $cut . "})`", "$1" . $hipen, $serial, floor(($len-1) / $cut));
}

$serial = get_serial_mix(16, 4);
echo $serial;
?>

이전글의 코멘트에서 전진님이 지적해준 세가지 문제를 수정하였습니다.
좋은 지적을 해주신 전진님께 감사드립니다.
|

댓글 4개

쿨하게 받아주신 유창화님께 감사드립니다. ^^
저도 아직 많이 부족한 사람이에요
좋은 지적 고맙습니다.
생성된 결과가 숫자보다 알파벳이 더 많게 하기 위한 간단한 방법

return $str[$div] . $str[$rest];



return $str[(36-$div)] . $str[(36-$rest)];

로 만 바꿔주면 됩니다.

물론 문자열을 아예 섞어버리는것도 가능합니다.
오.. 이런 트윅 너무 좋아합니다. ^^;
고맙습니다. ^^
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 3,418
13년 전 조회 2,028
13년 전 조회 2,705
13년 전 조회 2,940
13년 전 조회 2,755
13년 전 조회 2,091
13년 전 조회 2,370
13년 전 조회 1,878
13년 전 조회 1,734
13년 전 조회 2,401
13년 전 조회 2,083
13년 전 조회 1,943
13년 전 조회 1,839
13년 전 조회 2,040
13년 전 조회 1,816
13년 전 조회 2,393
13년 전 조회 2,044
13년 전 조회 1,707
13년 전 조회 2,327
13년 전 조회 1,982
13년 전 조회 2,682
13년 전 조회 2,177
13년 전 조회 4,595
13년 전 조회 2,662
13년 전 조회 3,232
13년 전 조회 1,878
13년 전 조회 1,526
13년 전 조회 2,222
13년 전 조회 3,001
13년 전 조회 1,904
13년 전 조회 3,112
13년 전 조회 1,828
13년 전 조회 2,193
13년 전 조회 2,879
13년 전 조회 2,215
13년 전 조회 1,880
13년 전 조회 2,589
13년 전 조회 4,872
13년 전 조회 1,610
13년 전 조회 1,676
13년 전 조회 1,838
13년 전 조회 4,935
13년 전 조회 2,305
13년 전 조회 2,511
13년 전 조회 2,524
13년 전 조회 1,813
13년 전 조회 1,678
13년 전 조회 1,837
13년 전 조회 2,635
13년 전 조회 1,979
13년 전 조회 2,299
13년 전 조회 3,481
13년 전 조회 1,962
13년 전 조회 2,268
13년 전 조회 2,391
13년 전 조회 1,743
13년 전 조회 4,482
13년 전 조회 2,254
13년 전 조회 3,791
13년 전 조회 2,120
13년 전 조회 1,811
13년 전 조회 1,855
13년 전 조회 1,704
13년 전 조회 2,241
13년 전 조회 2,363
14년 전 조회 3,713
14년 전 조회 5,287
14년 전 조회 1,711
14년 전 조회 4,279
14년 전 조회 1,672
14년 전 조회 2,138
14년 전 조회 1,763
14년 전 조회 2,103
14년 전 조회 2,848
14년 전 조회 2,188
14년 전 조회 1,640
14년 전 조회 2,311
14년 전 조회 1,928
14년 전 조회 2,324
14년 전 조회 2,787
14년 전 조회 2,141
14년 전 조회 1,752
14년 전 조회 2,931
14년 전 조회 2,206
14년 전 조회 1,803
14년 전 조회 1,715
14년 전 조회 2,103
14년 전 조회 1,617
14년 전 조회 2,779
14년 전 조회 2,033
14년 전 조회 2,034
14년 전 조회 1,682
14년 전 조회 2,337
14년 전 조회 3,147
14년 전 조회 1,652
14년 전 조회 1,535
14년 전 조회 1,742
14년 전 조회 4,325
14년 전 조회 1,803
14년 전 조회 2,340