<?
//지정된 자릿수의 랜덤한 숫자를 반환합니다. 최대 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년 전
오.. 이런 트윅 너무 좋아합니다. ^^;
고맙습니다. ^^
고맙습니다. ^^
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 92 | ||
| 8229 | 9년 전 | 92 | ||
| 8228 |
커네드커네드
|
9년 전 | 134 | |
| 8227 | 9년 전 | 156 | ||
| 8226 | 9년 전 | 183 | ||
| 8225 | 9년 전 | 172 | ||
| 8224 | 9년 전 | 166 | ||
| 8223 | 9년 전 | 133 | ||
| 8222 |
|
9년 전 | 207 | |
| 8221 | 9년 전 | 116 | ||
| 8220 | 9년 전 | 128 | ||
| 8219 | 9년 전 | 117 | ||
| 8218 | 9년 전 | 165 | ||
| 8217 |
star3840
|
9년 전 | 134 | |
| 8216 | 9년 전 | 182 | ||
| 8215 | 9년 전 | 137 | ||
| 8214 | 9년 전 | 244 | ||
| 8213 | 9년 전 | 187 | ||
| 8212 | 9년 전 | 107 | ||
| 8211 | 9년 전 | 274 | ||
| 8210 | 9년 전 | 271 | ||
| 8209 | 9년 전 | 359 | ||
| 8208 | 9년 전 | 245 | ||
| 8207 | 9년 전 | 244 | ||
| 8206 |
|
9년 전 | 210 | |
| 8205 | 9년 전 | 193 | ||
| 8204 | 9년 전 | 154 | ||
| 8203 | 9년 전 | 249 | ||
| 8202 | 9년 전 | 165 | ||
| 8201 | 9년 전 | 198 | ||
| 8200 | 9년 전 | 190 | ||
| 8199 | 9년 전 | 237 | ||
| 8198 | 9년 전 | 200 | ||
| 8197 | 9년 전 | 185 | ||
| 8196 | 9년 전 | 575 | ||
| 8195 | 9년 전 | 182 | ||
| 8194 | 9년 전 | 306 | ||
| 8193 | 9년 전 | 182 | ||
| 8192 | 9년 전 | 219 | ||
| 8191 | 9년 전 | 164 | ||
| 8190 | 9년 전 | 161 | ||
| 8189 | 9년 전 | 223 | ||
| 8188 | 9년 전 | 152 | ||
| 8187 | 9년 전 | 165 | ||
| 8186 | 9년 전 | 164 | ||
| 8185 | 9년 전 | 340 | ||
| 8184 | 9년 전 | 127 | ||
| 8183 | 9년 전 | 339 | ||
| 8182 | 9년 전 | 194 | ||
| 8181 | 9년 전 | 152 | ||
| 8180 | 9년 전 | 725 | ||
| 8179 | 9년 전 | 508 | ||
| 8178 | 9년 전 | 334 | ||
| 8177 |
kiplayer
|
9년 전 | 349 | |
| 8176 | 9년 전 | 381 | ||
| 8175 | 9년 전 | 250 | ||
| 8174 | 9년 전 | 269 | ||
| 8173 | 9년 전 | 360 | ||
| 8172 | 9년 전 | 228 | ||
| 8171 | 9년 전 | 202 | ||
| 8170 | 9년 전 | 315 | ||
| 8169 |
커네드커네드
|
9년 전 | 280 | |
| 8168 | 9년 전 | 349 | ||
| 8167 | 9년 전 | 339 | ||
| 8166 | 9년 전 | 260 | ||
| 8165 | 9년 전 | 190 | ||
| 8164 | 9년 전 | 324 | ||
| 8163 | 9년 전 | 307 | ||
| 8162 | 9년 전 | 328 | ||
| 8161 | 9년 전 | 318 | ||
| 8160 |
|
9년 전 | 513 | |
| 8159 | 9년 전 | 451 | ||
| 8158 | 9년 전 | 273 | ||
| 8157 | 9년 전 | 401 | ||
| 8156 | 9년 전 | 289 | ||
| 8155 | 9년 전 | 278 | ||
| 8154 |
00년생용띠
|
9년 전 | 620 | |
| 8153 | 9년 전 | 257 | ||
| 8152 |
|
9년 전 | 435 | |
| 8151 | 9년 전 | 440 | ||
| 8150 | 9년 전 | 530 | ||
| 8149 |
Jangfolk
|
9년 전 | 369 | |
| 8148 | 9년 전 | 194 | ||
| 8147 | 9년 전 | 404 | ||
| 8146 | 9년 전 | 469 | ||
| 8145 | 9년 전 | 421 | ||
| 8144 | 9년 전 | 384 | ||
| 8143 | 9년 전 | 220 | ||
| 8142 | 9년 전 | 457 | ||
| 8141 | 9년 전 | 401 | ||
| 8140 | 9년 전 | 950 | ||
| 8139 | 9년 전 | 290 | ||
| 8138 |
전갈자리남자
|
9년 전 | 409 | |
| 8137 | 9년 전 | 426 | ||
| 8136 | 9년 전 | 768 | ||
| 8135 |
|
9년 전 | 815 | |
| 8134 |
PlayPixel
|
9년 전 | 541 | |
| 8133 |
|
9년 전 | 462 | |
| 8132 | 9년 전 | 482 | ||
| 8131 | 9년 전 | 833 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기