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

<?

//지정된 자릿수의 랜덤한 숫자를 반환합니다. 최대 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년 전 조회 2,929
13년 전 조회 1,518
13년 전 조회 2,192
13년 전 조회 2,433
13년 전 조회 2,272
13년 전 조회 1,584
13년 전 조회 1,849
13년 전 조회 1,363
13년 전 조회 1,227
13년 전 조회 1,899
13년 전 조회 1,578
13년 전 조회 1,407
13년 전 조회 1,327
13년 전 조회 1,547
13년 전 조회 1,290
13년 전 조회 1,885
13년 전 조회 1,545
13년 전 조회 1,240
13년 전 조회 1,829
13년 전 조회 1,476
13년 전 조회 2,212
13년 전 조회 1,680
13년 전 조회 4,083
13년 전 조회 2,148
13년 전 조회 2,733
13년 전 조회 1,383
13년 전 조회 1,029
13년 전 조회 1,718
13년 전 조회 2,493
13년 전 조회 1,411
13년 전 조회 2,628
13년 전 조회 1,358
13년 전 조회 1,707
13년 전 조회 2,390
13년 전 조회 1,726
13년 전 조회 1,375
13년 전 조회 2,102
13년 전 조회 4,375
13년 전 조회 1,106
13년 전 조회 1,173
13년 전 조회 1,348
13년 전 조회 4,454
13년 전 조회 1,799
13년 전 조회 2,004
13년 전 조회 2,017
13년 전 조회 1,311
13년 전 조회 1,171
13년 전 조회 1,336
13년 전 조회 2,142
13년 전 조회 1,505
13년 전 조회 1,816
13년 전 조회 3,010
13년 전 조회 1,494
13년 전 조회 1,817
13년 전 조회 1,892
13년 전 조회 1,262
13년 전 조회 4,006
13년 전 조회 1,778
13년 전 조회 3,319
13년 전 조회 1,631
13년 전 조회 1,346
13년 전 조회 1,363
13년 전 조회 1,244
13년 전 조회 1,785
13년 전 조회 1,924
13년 전 조회 3,243
13년 전 조회 4,880
13년 전 조회 1,259
13년 전 조회 3,835
13년 전 조회 1,196
13년 전 조회 1,678
13년 전 조회 1,285
13년 전 조회 1,629
13년 전 조회 2,403
13년 전 조회 1,793
13년 전 조회 1,185
13년 전 조회 1,851
13년 전 조회 1,467
13년 전 조회 1,867
13년 전 조회 2,312
13년 전 조회 1,696
13년 전 조회 1,278
13년 전 조회 2,537
13년 전 조회 1,781
13년 전 조회 1,320
13년 전 조회 1,256
13년 전 조회 1,646
13년 전 조회 1,185
13년 전 조회 2,365
13년 전 조회 1,584
13년 전 조회 1,561
13년 전 조회 1,221
13년 전 조회 1,942
13년 전 조회 2,750
13년 전 조회 1,169
13년 전 조회 1,059
13년 전 조회 1,298
13년 전 조회 3,927
13년 전 조회 1,329
13년 전 조회 1,898