<?
//지정된 자릿수의 랜덤한 숫자를 반환합니다. 최대 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개
13년 전
쿨하게 받아주신 유창화님께 감사드립니다. ^^
13년 전
저도 아직 많이 부족한 사람이에요
좋은 지적 고맙습니다.
좋은 지적 고맙습니다.
13년 전
생성된 결과가 숫자보다 알파벳이 더 많게 하기 위한 간단한 방법
return $str[$div] . $str[$rest];
을
return $str[(36-$div)] . $str[(36-$rest)];
로 만 바꿔주면 됩니다.
물론 문자열을 아예 섞어버리는것도 가능합니다.
return $str[$div] . $str[$rest];
을
return $str[(36-$div)] . $str[(36-$rest)];
로 만 바꿔주면 됩니다.
물론 문자열을 아예 섞어버리는것도 가능합니다.
13년 전
오.. 이런 트윅 너무 좋아합니다. ^^;
고맙습니다. ^^
고맙습니다. ^^
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7630 | 10년 전 | 671 | ||
| 7629 |
|
10년 전 | 2424 | |
| 7628 | 10년 전 | 809 | ||
| 7627 |
|
10년 전 | 1046 | |
| 7626 |
|
10년 전 | 1803 | |
| 7625 | 10년 전 | 734 | ||
| 7624 | 10년 전 | 748 | ||
| 7623 |
|
10년 전 | 3125 | |
| 7622 | 10년 전 | 748 | ||
| 7621 |
leeleeleelee
|
10년 전 | 603 | |
| 7620 | 10년 전 | 552 | ||
| 7619 | 10년 전 | 515 | ||
| 7618 | 10년 전 | 1051 | ||
| 7617 | 10년 전 | 737 | ||
| 7616 | 10년 전 | 672 | ||
| 7615 | 10년 전 | 740 | ||
| 7614 | 10년 전 | 1281 | ||
| 7613 |
|
10년 전 | 2097 | |
| 7612 | 10년 전 | 1179 | ||
| 7611 | 10년 전 | 1441 | ||
| 7610 |
|
10년 전 | 1916 | |
| 7609 |
|
10년 전 | 1375 | |
| 7608 |
mwdkim
|
10년 전 | 1149 | |
| 7607 |
|
10년 전 | 1079 | |
| 7606 |
mwdkim
|
10년 전 | 3955 | |
| 7605 | 10년 전 | 705 | ||
| 7604 | 10년 전 | 1042 | ||
| 7603 | 10년 전 | 1664 | ||
| 7602 |
|
10년 전 | 1095 | |
| 7601 |
AniNest
|
10년 전 | 2811 | |
| 7600 |
port443
|
10년 전 | 1052 | |
| 7599 | 10년 전 | 959 | ||
| 7598 | 10년 전 | 1039 | ||
| 7597 | 10년 전 | 4589 | ||
| 7596 |
SeungYeon
|
10년 전 | 908 | |
| 7595 |
untitled
|
10년 전 | 2454 | |
| 7594 |
프로그래머7
|
10년 전 | 1747 | |
| 7593 |
untitled
|
10년 전 | 2388 | |
| 7592 |
untitled
|
10년 전 | 1957 | |
| 7591 |
untitled
|
10년 전 | 2693 | |
| 7590 |
아리마2001
|
10년 전 | 870 | |
| 7589 | 10년 전 | 1123 | ||
| 7588 |
|
10년 전 | 2938 | |
| 7587 | 10년 전 | 1319 | ||
| 7586 | 10년 전 | 686 | ||
| 7585 | 10년 전 | 1720 | ||
| 7584 | 10년 전 | 1424 | ||
| 7583 |
leeleeleelee
|
10년 전 | 1189 | |
| 7582 |
|
10년 전 | 1148 | |
| 7581 | 10년 전 | 1376 | ||
| 7580 | 10년 전 | 1031 | ||
| 7579 |
|
10년 전 | 619 | |
| 7578 | 10년 전 | 1441 | ||
| 7577 |
|
10년 전 | 1888 | |
| 7576 | 10년 전 | 1401 | ||
| 7575 |
멋진남자임
|
10년 전 | 1481 | |
| 7574 | 10년 전 | 2141 | ||
| 7573 | 10년 전 | 3276 | ||
| 7572 | 10년 전 | 776 | ||
| 7571 |
|
10년 전 | 796 | |
| 7570 |
|
10년 전 | 1337 | |
| 7569 | 10년 전 | 1566 | ||
| 7568 |
this1mg
|
10년 전 | 1064 | |
| 7567 |
|
10년 전 | 781 | |
| 7566 | 10년 전 | 929 | ||
| 7565 |
Angel하늘
|
10년 전 | 1031 | |
| 7564 |
seoldi
|
10년 전 | 1277 | |
| 7563 |
|
10년 전 | 1417 | |
| 7562 |
멋진남자임
|
10년 전 | 2113 | |
| 7561 | 10년 전 | 733 | ||
| 7560 |
leeleeleelee
|
10년 전 | 930 | |
| 7559 | 10년 전 | 5072 | ||
| 7558 |
RinaP
|
10년 전 | 810 | |
| 7557 |
|
10년 전 | 1271 | |
| 7556 | 10년 전 | 1212 | ||
| 7555 |
hyohyojj1234
|
10년 전 | 1680 | |
| 7554 | 10년 전 | 1108 | ||
| 7553 |
senseme
|
10년 전 | 1357 | |
| 7552 |
ehdltdoit
|
10년 전 | 1455 | |
| 7551 |
|
10년 전 | 1846 | |
| 7550 |
leeleeleelee
|
10년 전 | 1615 | |
| 7549 | 10년 전 | 2447 | ||
| 7548 | 10년 전 | 1856 | ||
| 7547 |
멋진남자임
|
10년 전 | 1976 | |
| 7546 | 10년 전 | 1020 | ||
| 7545 |
ILMare1003
|
10년 전 | 1311 | |
| 7544 |
|
10년 전 | 1267 | |
| 7543 | 10년 전 | 901 | ||
| 7542 | 10년 전 | 681 | ||
| 7541 |
울라라라우
|
10년 전 | 881 | |
| 7540 | 10년 전 | 1608 | ||
| 7539 | 10년 전 | 954 | ||
| 7538 |
|
10년 전 | 1843 | |
| 7537 | 10년 전 | 3629 | ||
| 7536 |
Gaumi
|
10년 전 | 1441 | |
| 7535 |
프로그램은어려워
|
10년 전 | 1292 | |
| 7534 |
senseme
|
10년 전 | 1219 | |
| 7533 | 10년 전 | 1222 | ||
| 7532 | 10년 전 | 886 | ||
| 7531 | 10년 전 | 2077 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기