<?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년 전
중복되는 카운트가 존재할 여지는 있겠네요
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 189 | ||
| 8229 | 9년 전 | 169 | ||
| 8228 |
커네드커네드
|
9년 전 | 208 | |
| 8227 | 9년 전 | 249 | ||
| 8226 | 9년 전 | 269 | ||
| 8225 | 9년 전 | 248 | ||
| 8224 | 9년 전 | 254 | ||
| 8223 | 9년 전 | 230 | ||
| 8222 |
|
9년 전 | 294 | |
| 8221 | 9년 전 | 193 | ||
| 8220 | 9년 전 | 235 | ||
| 8219 | 9년 전 | 207 | ||
| 8218 | 9년 전 | 253 | ||
| 8217 |
star3840
|
9년 전 | 215 | |
| 8216 | 9년 전 | 287 | ||
| 8215 | 9년 전 | 228 | ||
| 8214 | 9년 전 | 335 | ||
| 8213 | 9년 전 | 295 | ||
| 8212 | 9년 전 | 209 | ||
| 8211 | 9년 전 | 379 | ||
| 8210 | 9년 전 | 371 | ||
| 8209 | 9년 전 | 453 | ||
| 8208 | 9년 전 | 341 | ||
| 8207 | 9년 전 | 350 | ||
| 8206 |
|
9년 전 | 296 | |
| 8205 | 9년 전 | 271 | ||
| 8204 | 9년 전 | 257 | ||
| 8203 | 9년 전 | 338 | ||
| 8202 | 9년 전 | 250 | ||
| 8201 | 9년 전 | 290 | ||
| 8200 | 9년 전 | 294 | ||
| 8199 | 9년 전 | 317 | ||
| 8198 | 9년 전 | 281 | ||
| 8197 | 9년 전 | 264 | ||
| 8196 | 9년 전 | 689 | ||
| 8195 | 9년 전 | 273 | ||
| 8194 | 9년 전 | 388 | ||
| 8193 | 9년 전 | 303 | ||
| 8192 | 9년 전 | 309 | ||
| 8191 | 9년 전 | 267 | ||
| 8190 | 9년 전 | 250 | ||
| 8189 | 9년 전 | 309 | ||
| 8188 | 9년 전 | 241 | ||
| 8187 | 9년 전 | 260 | ||
| 8186 | 9년 전 | 255 | ||
| 8185 | 9년 전 | 424 | ||
| 8184 | 9년 전 | 212 | ||
| 8183 | 9년 전 | 420 | ||
| 8182 | 9년 전 | 288 | ||
| 8181 | 9년 전 | 245 | ||
| 8180 | 9년 전 | 821 | ||
| 8179 | 9년 전 | 594 | ||
| 8178 | 9년 전 | 452 | ||
| 8177 |
kiplayer
|
9년 전 | 450 | |
| 8176 | 9년 전 | 481 | ||
| 8175 | 9년 전 | 366 | ||
| 8174 | 9년 전 | 359 | ||
| 8173 | 9년 전 | 451 | ||
| 8172 | 9년 전 | 331 | ||
| 8171 | 9년 전 | 294 | ||
| 8170 | 9년 전 | 409 | ||
| 8169 |
커네드커네드
|
9년 전 | 363 | |
| 8168 | 9년 전 | 447 | ||
| 8167 | 9년 전 | 439 | ||
| 8166 | 9년 전 | 338 | ||
| 8165 | 9년 전 | 275 | ||
| 8164 | 9년 전 | 411 | ||
| 8163 | 9년 전 | 415 | ||
| 8162 | 9년 전 | 398 | ||
| 8161 | 9년 전 | 413 | ||
| 8160 |
|
9년 전 | 634 | |
| 8159 | 9년 전 | 579 | ||
| 8158 | 9년 전 | 372 | ||
| 8157 | 9년 전 | 492 | ||
| 8156 | 9년 전 | 363 | ||
| 8155 | 9년 전 | 376 | ||
| 8154 |
00년생용띠
|
9년 전 | 704 | |
| 8153 | 9년 전 | 343 | ||
| 8152 |
|
9년 전 | 520 | |
| 8151 | 9년 전 | 511 | ||
| 8150 | 9년 전 | 630 | ||
| 8149 |
Jangfolk
|
9년 전 | 487 | |
| 8148 | 9년 전 | 303 | ||
| 8147 | 9년 전 | 487 | ||
| 8146 | 9년 전 | 568 | ||
| 8145 | 9년 전 | 523 | ||
| 8144 | 9년 전 | 493 | ||
| 8143 | 9년 전 | 318 | ||
| 8142 | 9년 전 | 538 | ||
| 8141 | 9년 전 | 484 | ||
| 8140 | 9년 전 | 1053 | ||
| 8139 | 9년 전 | 388 | ||
| 8138 |
전갈자리남자
|
9년 전 | 494 | |
| 8137 | 9년 전 | 532 | ||
| 8136 | 9년 전 | 863 | ||
| 8135 |
|
9년 전 | 905 | |
| 8134 |
PlayPixel
|
9년 전 | 646 | |
| 8133 |
|
9년 전 | 551 | |
| 8132 | 9년 전 | 588 | ||
| 8131 | 9년 전 | 943 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기