<?
//지정된 자릿수의 랜덤한 숫자를 반환합니다. 최대 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년 전
오.. 이런 트윅 너무 좋아합니다. ^^;
고맙습니다. ^^
고맙습니다. ^^
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7930 | 9년 전 | 400 | ||
| 7929 | 9년 전 | 320 | ||
| 7928 | 9년 전 | 411 | ||
| 7927 | 9년 전 | 329 | ||
| 7926 | 9년 전 | 660 | ||
| 7925 | 9년 전 | 344 | ||
| 7924 | 9년 전 | 331 | ||
| 7923 | 9년 전 | 337 | ||
| 7922 | 9년 전 | 369 | ||
| 7921 | 9년 전 | 395 | ||
| 7920 | 9년 전 | 316 | ||
| 7919 | 9년 전 | 330 | ||
| 7918 | 9년 전 | 486 | ||
| 7917 | 9년 전 | 324 | ||
| 7916 | 9년 전 | 399 | ||
| 7915 | 9년 전 | 399 | ||
| 7914 | 9년 전 | 407 | ||
| 7913 | 9년 전 | 566 | ||
| 7912 | 9년 전 | 412 | ||
| 7911 | 9년 전 | 360 | ||
| 7910 | 9년 전 | 402 | ||
| 7909 | 9년 전 | 501 | ||
| 7908 | 9년 전 | 416 | ||
| 7907 | 9년 전 | 361 | ||
| 7906 | 9년 전 | 382 | ||
| 7905 | 9년 전 | 359 | ||
| 7904 | 9년 전 | 349 | ||
| 7903 | 9년 전 | 341 | ||
| 7902 | 9년 전 | 554 | ||
| 7901 |
|
9년 전 | 727 | |
| 7900 | 9년 전 | 577 | ||
| 7899 | 9년 전 | 372 | ||
| 7898 | 9년 전 | 378 | ||
| 7897 | 9년 전 | 331 | ||
| 7896 | 9년 전 | 351 | ||
| 7895 | 9년 전 | 461 | ||
| 7894 | 9년 전 | 382 | ||
| 7893 | 9년 전 | 327 | ||
| 7892 | 9년 전 | 379 | ||
| 7891 | 9년 전 | 754 | ||
| 7890 | 9년 전 | 1188 | ||
| 7889 | 9년 전 | 742 | ||
| 7888 |
limsy1987
|
9년 전 | 542 | |
| 7887 | 9년 전 | 539 | ||
| 7886 | 9년 전 | 423 | ||
| 7885 | 9년 전 | 397 | ||
| 7884 | 9년 전 | 400 | ||
| 7883 | 9년 전 | 396 | ||
| 7882 | 9년 전 | 440 | ||
| 7881 | 9년 전 | 431 | ||
| 7880 | 9년 전 | 552 | ||
| 7879 | 9년 전 | 453 | ||
| 7878 | 9년 전 | 1208 | ||
| 7877 | 9년 전 | 745 | ||
| 7876 | 9년 전 | 472 | ||
| 7875 | 9년 전 | 552 | ||
| 7874 |
|
9년 전 | 800 | |
| 7873 | 9년 전 | 512 | ||
| 7872 | 9년 전 | 667 | ||
| 7871 | 9년 전 | 473 | ||
| 7870 | 9년 전 | 599 | ||
| 7869 | 9년 전 | 428 | ||
| 7868 | 9년 전 | 432 | ||
| 7867 | 9년 전 | 415 | ||
| 7866 | 9년 전 | 478 | ||
| 7865 | 9년 전 | 442 | ||
| 7864 | 9년 전 | 506 | ||
| 7863 | 9년 전 | 502 | ||
| 7862 | 9년 전 | 461 | ||
| 7861 | 9년 전 | 622 | ||
| 7860 | 9년 전 | 613 | ||
| 7859 | 9년 전 | 403 | ||
| 7858 | 9년 전 | 694 | ||
| 7857 | 9년 전 | 1067 | ||
| 7856 | 9년 전 | 513 | ||
| 7855 | 9년 전 | 741 | ||
| 7854 | 9년 전 | 725 | ||
| 7853 | 9년 전 | 572 | ||
| 7852 | 9년 전 | 501 | ||
| 7851 | 9년 전 | 497 | ||
| 7850 | 9년 전 | 579 | ||
| 7849 | 9년 전 | 354 | ||
| 7848 | 9년 전 | 405 | ||
| 7847 | 9년 전 | 644 | ||
| 7846 | 9년 전 | 449 | ||
| 7845 | 9년 전 | 408 | ||
| 7844 | 9년 전 | 387 | ||
| 7843 | 9년 전 | 406 | ||
| 7842 | 9년 전 | 390 | ||
| 7841 | 9년 전 | 377 | ||
| 7840 | 9년 전 | 397 | ||
| 7839 | 9년 전 | 428 | ||
| 7838 | 9년 전 | 511 | ||
| 7837 | 9년 전 | 348 | ||
| 7836 | 9년 전 | 393 | ||
| 7835 | 9년 전 | 466 | ||
| 7834 |
|
9년 전 | 1186 | |
| 7833 | 9년 전 | 418 | ||
| 7832 | 9년 전 | 407 | ||
| 7831 | 9년 전 | 553 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기