<?php
//지정된 자릿수의 랜덤한 숫자를 반환합니다. 최대 10까지 가능합니다. 4 이면 1000 에서 9999 사이의 랜덤 숫자
function get_rand_number($len=4) {
$len = abs((int)$len);
if ($len < 1) $len = 1;
else if ($len > 10) $len = 10;
return rand(pow(10, $len - 1), (pow(10, $len) - 1));
}
//넘어온 세자리수를 36진수로 변환해서 반환합니다. preg_match_callback 을 통해서만 사용됩니다.
function get_simple_36($m){
$str = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
$div = floor($m[0] / 36);
$rest = $m[0] % 36;
return $str[$div] . $str[$rest];
}
//지정된 자리수에 존재하는 소수 전체를 배열로 반환합니다. max len = 5
function get_simple_prime_number($len=5){
$len = abs((int)$len);
if ($len < 1) $len = 1;
else if ($len > 5) $len = 5;
$prime_1 = Array(1, 2, 3, 5, 7);
if ($len == 1) return $prime_1;
$start = pow(10, ($len - 1)) + 1;//101
$end = pow(10, $len) - 1;//999
$prime = $prime_1;
unset($prime[0]);//1제거
unset($prime[1]);//2제거
$array = Array();
for($i = 11; $i <= $end; $i+=2){//10보다 큰 소수에는 짝수가 없다.
$max = floor(sqrt($i));
foreach($prime as $j) {
if ($j > $max) break;
if ($i % $j == 0) continue 2;
}
$prime[] = $i;
if ($i >= $start) $array[] = $i;
}
return $array;
}
//지정된 자릿수의 숫자로된 시리얼을 반환합니다. - 를 포함하고 싶지 않을때는 $cut 이 $len 보다 크거나 같으면 됩니다. max len = 36
function get_serial($len=16, $cut=4, $hipen='-'){
$len = abs((int)$len);
if ($len < 1) $len = 16;
else if ($len > 36) $len = 36;
$cut = abs((int)$cut);
if ($cut < 1) $cut = 4;
else if ($cut > $len) $cut = $len;
list($usec, $sec) = explode(' ', microtime());
$base_number = (string)$sec . str_replace('0.', '', (string)$usec);
$base_number .= (string)get_rand_number(10) . (string)get_rand_number(8);//36자리 유니크한 숫자 문자열
$prime = get_simple_prime_number(5);//5자리 소수 배열
shuffle($prime);
$prime = $prime[0];//랜덤한 5자리 소수
$serial = bcmul(substr($base_number, 0, $len), $prime);
$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));
}
//지정된 자릿수의 숫자와 영문으로된 시리얼을 반환합니다. - 를 포함하고 싶지 않을때는 $cut 이 $len 보다 크거나 같으면 됩니다. max len = 24
function get_serial_mix($len=16, $cut=4, $hipen='-'){
$len = abs((int)$len);
if ($len < 1) $len = 16;
else if ($len > 24) $len = 24;
$cut = abs((int)$cut);
if ($cut < 1) $cut = 4;
else if ($cut > $len) $cut = $len;
$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));
}
echo get_serial_mix(16, 4, '-');
?>
//지정된 자릿수의 랜덤한 숫자를 반환합니다. 최대 10까지 가능합니다. 4 이면 1000 에서 9999 사이의 랜덤 숫자
function get_rand_number($len=4) {
$len = abs((int)$len);
if ($len < 1) $len = 1;
else if ($len > 10) $len = 10;
return rand(pow(10, $len - 1), (pow(10, $len) - 1));
}
//넘어온 세자리수를 36진수로 변환해서 반환합니다. preg_match_callback 을 통해서만 사용됩니다.
function get_simple_36($m){
$str = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
$div = floor($m[0] / 36);
$rest = $m[0] % 36;
return $str[$div] . $str[$rest];
}
//지정된 자리수에 존재하는 소수 전체를 배열로 반환합니다. max len = 5
function get_simple_prime_number($len=5){
$len = abs((int)$len);
if ($len < 1) $len = 1;
else if ($len > 5) $len = 5;
$prime_1 = Array(1, 2, 3, 5, 7);
if ($len == 1) return $prime_1;
$start = pow(10, ($len - 1)) + 1;//101
$end = pow(10, $len) - 1;//999
$prime = $prime_1;
unset($prime[0]);//1제거
unset($prime[1]);//2제거
$array = Array();
for($i = 11; $i <= $end; $i+=2){//10보다 큰 소수에는 짝수가 없다.
$max = floor(sqrt($i));
foreach($prime as $j) {
if ($j > $max) break;
if ($i % $j == 0) continue 2;
}
$prime[] = $i;
if ($i >= $start) $array[] = $i;
}
return $array;
}
//지정된 자릿수의 숫자로된 시리얼을 반환합니다. - 를 포함하고 싶지 않을때는 $cut 이 $len 보다 크거나 같으면 됩니다. max len = 36
function get_serial($len=16, $cut=4, $hipen='-'){
$len = abs((int)$len);
if ($len < 1) $len = 16;
else if ($len > 36) $len = 36;
$cut = abs((int)$cut);
if ($cut < 1) $cut = 4;
else if ($cut > $len) $cut = $len;
list($usec, $sec) = explode(' ', microtime());
$base_number = (string)$sec . str_replace('0.', '', (string)$usec);
$base_number .= (string)get_rand_number(10) . (string)get_rand_number(8);//36자리 유니크한 숫자 문자열
$prime = get_simple_prime_number(5);//5자리 소수 배열
shuffle($prime);
$prime = $prime[0];//랜덤한 5자리 소수
$serial = bcmul(substr($base_number, 0, $len), $prime);
$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));
}
//지정된 자릿수의 숫자와 영문으로된 시리얼을 반환합니다. - 를 포함하고 싶지 않을때는 $cut 이 $len 보다 크거나 같으면 됩니다. max len = 24
function get_serial_mix($len=16, $cut=4, $hipen='-'){
$len = abs((int)$len);
if ($len < 1) $len = 16;
else if ($len > 24) $len = 24;
$cut = abs((int)$cut);
if ($cut < 1) $cut = 4;
else if ($cut > $len) $cut = $len;
$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));
}
echo get_serial_mix(16, 4, '-');
?>
댓글 1개
가오가이거
12년 전
중복되는 카운트가 존재할 여지는 있겠네요
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8130 | 9년 전 | 499 | ||
| 8129 |
|
9년 전 | 645 | |
| 8128 | 9년 전 | 512 | ||
| 8127 |
|
9년 전 | 572 | |
| 8126 | 9년 전 | 500 | ||
| 8125 | 9년 전 | 759 | ||
| 8124 |
|
9년 전 | 507 | |
| 8123 | 9년 전 | 490 | ||
| 8122 | 9년 전 | 427 | ||
| 8121 | 9년 전 | 526 | ||
| 8120 | 9년 전 | 456 | ||
| 8119 | 9년 전 | 543 | ||
| 8118 |
|
9년 전 | 625 | |
| 8117 |
|
9년 전 | 396 | |
| 8116 |
PASKRAN
|
9년 전 | 463 | |
| 8115 | 9년 전 | 452 | ||
| 8114 |
kiplayer
|
9년 전 | 592 | |
| 8113 | 9년 전 | 433 | ||
| 8112 |
|
9년 전 | 550 | |
| 8111 | 9년 전 | 405 | ||
| 8110 | 9년 전 | 439 | ||
| 8109 | 9년 전 | 356 | ||
| 8108 |
|
9년 전 | 534 | |
| 8107 |
|
9년 전 | 432 | |
| 8106 |
|
9년 전 | 423 | |
| 8105 | 9년 전 | 471 | ||
| 8104 |
|
9년 전 | 425 | |
| 8103 |
|
9년 전 | 422 | |
| 8102 |
|
9년 전 | 386 | |
| 8101 |
snshero
|
9년 전 | 773 | |
| 8100 | 9년 전 | 831 | ||
| 8099 | 9년 전 | 799 | ||
| 8098 | 9년 전 | 705 | ||
| 8097 | 9년 전 | 503 | ||
| 8096 | 9년 전 | 703 | ||
| 8095 | 9년 전 | 832 | ||
| 8094 | 9년 전 | 503 | ||
| 8093 | 9년 전 | 788 | ||
| 8092 | 9년 전 | 751 | ||
| 8091 | 9년 전 | 1137 | ||
| 8090 | 9년 전 | 758 | ||
| 8089 | 9년 전 | 962 | ||
| 8088 | 9년 전 | 631 | ||
| 8087 | 9년 전 | 743 | ||
| 8086 | 9년 전 | 511 | ||
| 8085 | 9년 전 | 480 | ||
| 8084 | 9년 전 | 605 | ||
| 8083 | 9년 전 | 579 | ||
| 8082 | 9년 전 | 749 | ||
| 8081 | 9년 전 | 464 | ||
| 8080 | 9년 전 | 558 | ||
| 8079 | 9년 전 | 509 | ||
| 8078 | 9년 전 | 438 | ||
| 8077 | 9년 전 | 518 | ||
| 8076 | 9년 전 | 400 | ||
| 8075 | 9년 전 | 426 | ||
| 8074 | 9년 전 | 385 | ||
| 8073 | 9년 전 | 441 | ||
| 8072 | 9년 전 | 430 | ||
| 8071 |
o1o111
|
9년 전 | 882 | |
| 8070 | 9년 전 | 391 | ||
| 8069 | 9년 전 | 325 | ||
| 8068 | 9년 전 | 578 | ||
| 8067 | 9년 전 | 385 | ||
| 8066 | 9년 전 | 419 | ||
| 8065 | 9년 전 | 371 | ||
| 8064 | 9년 전 | 352 | ||
| 8063 | 9년 전 | 326 | ||
| 8062 | 9년 전 | 299 | ||
| 8061 | 9년 전 | 344 | ||
| 8060 | 9년 전 | 379 | ||
| 8059 | 9년 전 | 310 | ||
| 8058 | 9년 전 | 246 | ||
| 8057 | 9년 전 | 380 | ||
| 8056 | 9년 전 | 299 | ||
| 8055 | 9년 전 | 338 | ||
| 8054 | 9년 전 | 352 | ||
| 8053 | 9년 전 | 401 | ||
| 8052 | 9년 전 | 284 | ||
| 8051 | 9년 전 | 320 | ||
| 8050 | 9년 전 | 384 | ||
| 8049 | 9년 전 | 315 | ||
| 8048 | 9년 전 | 427 | ||
| 8047 | 9년 전 | 345 | ||
| 8046 | 9년 전 | 288 | ||
| 8045 | 9년 전 | 247 | ||
| 8044 | 9년 전 | 340 | ||
| 8043 | 9년 전 | 273 | ||
| 8042 | 9년 전 | 282 | ||
| 8041 | 9년 전 | 332 | ||
| 8040 | 9년 전 | 259 | ||
| 8039 | 9년 전 | 311 | ||
| 8038 | 9년 전 | 263 | ||
| 8037 | 9년 전 | 392 | ||
| 8036 | 9년 전 | 470 | ||
| 8035 | 9년 전 | 420 | ||
| 8034 | 9년 전 | 382 | ||
| 8033 | 9년 전 | 339 | ||
| 8032 | 9년 전 | 417 | ||
| 8031 | 9년 전 | 337 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기