<?
//지정된 자릿수의 랜덤한 숫자를 반환합니다. 최대 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년 전
오.. 이런 트윅 너무 좋아합니다. ^^;
고맙습니다. ^^
고맙습니다. ^^
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7530 | 10년 전 | 787 | ||
| 7529 |
파랑새1597
|
10년 전 | 1207 | |
| 7528 |
파랑새1597
|
10년 전 | 1312 | |
| 7527 |
integrity7
|
10년 전 | 1394 | |
| 7526 | 10년 전 | 2406 | ||
| 7525 |
다빈치코드777
|
10년 전 | 1101 | |
| 7524 | 10년 전 | 1564 | ||
| 7523 | 10년 전 | 959 | ||
| 7522 |
|
10년 전 | 988 | |
| 7521 |
blackkil
|
10년 전 | 1869 | |
| 7520 | 10년 전 | 1290 | ||
| 7519 |
Gaumi
|
10년 전 | 1080 | |
| 7518 | 10년 전 | 1477 | ||
| 7517 | 10년 전 | 829 | ||
| 7516 | 10년 전 | 1282 | ||
| 7515 | 10년 전 | 1397 | ||
| 7514 |
|
10년 전 | 4484 | |
| 7513 |
멋진남자임
|
10년 전 | 1135 | |
| 7512 |
다빈치코드777
|
10년 전 | 866 | |
| 7511 |
|
10년 전 | 3393 | |
| 7510 | 10년 전 | 1362 | ||
| 7509 | 10년 전 | 1142 | ||
| 7508 | 10년 전 | 714 | ||
| 7507 |
senseme
|
10년 전 | 740 | |
| 7506 |
멋진남자임
|
10년 전 | 1635 | |
| 7505 | 10년 전 | 4003 | ||
| 7504 | 10년 전 | 2139 | ||
| 7503 | 10년 전 | 989 | ||
| 7502 | 10년 전 | 516 | ||
| 7501 | 10년 전 | 1441 | ||
| 7500 | 10년 전 | 1489 | ||
| 7499 | 10년 전 | 3386 | ||
| 7498 | 10년 전 | 1206 | ||
| 7497 |
dethos79
|
10년 전 | 2962 | |
| 7496 | 10년 전 | 2148 | ||
| 7495 | 10년 전 | 861 | ||
| 7494 |
CHAVO
|
10년 전 | 1128 | |
| 7493 | 10년 전 | 2645 | ||
| 7492 | 10년 전 | 1264 | ||
| 7491 | 10년 전 | 1472 | ||
| 7490 | 10년 전 | 2334 | ||
| 7489 | 10년 전 | 2120 | ||
| 7488 |
toptopon
|
10년 전 | 891 | |
| 7487 |
|
10년 전 | 1028 | |
| 7486 | 10년 전 | 3348 | ||
| 7485 | 10년 전 | 1312 | ||
| 7484 | 10년 전 | 1371 | ||
| 7483 | 10년 전 | 1022 | ||
| 7482 | 10년 전 | 649 | ||
| 7481 | 10년 전 | 856 | ||
| 7480 | 10년 전 | 1227 | ||
| 7479 | 10년 전 | 2599 | ||
| 7478 | 10년 전 | 1162 | ||
| 7477 |
멋진남자임
|
10년 전 | 1518 | |
| 7476 |
zeppeto
|
10년 전 | 1143 | |
| 7475 |
200점아빠
|
10년 전 | 910 | |
| 7474 | 10년 전 | 4001 | ||
| 7473 | 10년 전 | 991 | ||
| 7472 |
나르시스1
|
10년 전 | 1241 | |
| 7471 | 10년 전 | 872 | ||
| 7470 | 10년 전 | 1274 | ||
| 7469 |
플라이SINJI
|
10년 전 | 973 | |
| 7468 |
|
10년 전 | 543 | |
| 7467 |
|
10년 전 | 659 | |
| 7466 | 10년 전 | 1115 | ||
| 7465 | 10년 전 | 1181 | ||
| 7464 |
|
10년 전 | 1187 | |
| 7463 | 10년 전 | 1244 | ||
| 7462 |
진짜별사탕
|
10년 전 | 854 | |
| 7461 | 10년 전 | 944 | ||
| 7460 | 10년 전 | 3726 | ||
| 7459 |
멋진남자임
|
10년 전 | 1552 | |
| 7458 |
멋진남자임
|
10년 전 | 480 | |
| 7457 | 10년 전 | 917 | ||
| 7456 | 10년 전 | 760 | ||
| 7455 | 10년 전 | 2151 | ||
| 7454 | 10년 전 | 629 | ||
| 7453 | 10년 전 | 823 | ||
| 7452 |
중국어사이트제작
|
10년 전 | 504 | |
| 7451 | 10년 전 | 903 | ||
| 7450 | 10년 전 | 626 | ||
| 7449 |
울라라라우
|
10년 전 | 947 | |
| 7448 | 10년 전 | 1630 | ||
| 7447 |
멋진남자임
|
10년 전 | 500 | |
| 7446 | 10년 전 | 548 | ||
| 7445 |
네이비칼라
|
10년 전 | 1672 | |
| 7444 |
senseme
|
10년 전 | 1406 | |
| 7443 | 10년 전 | 1338 | ||
| 7442 | 10년 전 | 725 | ||
| 7441 |
멋진남자임
|
10년 전 | 1434 | |
| 7440 | 10년 전 | 905 | ||
| 7439 |
|
10년 전 | 756 | |
| 7438 |
|
10년 전 | 932 | |
| 7437 |
basement
|
10년 전 | 1030 | |
| 7436 |
잘살아보자
|
10년 전 | 1125 | |
| 7435 | 10년 전 | 1083 | ||
| 7434 | 10년 전 | 3789 | ||
| 7433 |
|
10년 전 | 2731 | |
| 7432 |
alexkim
|
10년 전 | 858 | |
| 7431 |
이웃집초보
|
11년 전 | 1306 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기