Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 부모창
- 일괄변경
- MySQL
- Python
- random
- mariadb
- Postfix
- Oracle
- 확장자
- SVN
- jQuery
- centos
- 문자열자르기
- replace
- Selectbox
- docker
- RabbitMQ
- php
- ubuntu
- JavaScript
- 천단위
- 한글 깨짐
- i18n
- Eclipse
- smarty
- TextBox
- yum
- install
- TPL
Archives
- Today
- Total
wilson's story
난수 발생 (인증키 생성하기) 본문
반응형
//난수발생 function random_hax($cnt) { $return_code = ""; for($i=0;$i<$cnt;$i++) { $chk_ok = 1; while($chk_ok==1) { $rand_code = rand(48,122); if(($rand_code >= 48 && $rand_code <= 57) || ($rand_code >= 65 && $rand_code <= 90) || ($rand_code >= 97 && $rand_code <= 122)) { $chk_ok = 0; } } $return_code = $return_code.chr($rand_code); } return $return_code; }code 가 48~ 57 이면 숫자
code 가 65~ 90 이면 영어 대문자
code 가 97~ 122 이면 영어 소문자
반응형