전체 글(84)
-
[jQuery] input 박스에 maxlength 만큼 입력했을 때 자동으로 다음 박스로 이동하기
$(".inputs").keyup(function () { if (this.value.length == this.maxLength) { $(this).next('.inputs').focus(); } }); 출처: http://88240.tistory.com/460?category=409238 [shaking blog]
2018.04.12 -
PHP에서 원격 이미지의 유효성을 체크하는 방법
< ? function check_image($url) { function check_image($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url ); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_NOBODY, 1); $output = curl_exec($ch); curl_close($ch); $headers = array(); foreach(explode("\n",$output) as $line){ $parts = explode(':' ,$line); if(count($parts) == 2){ $h..
2018.04.12 -
[ Firebase ] Database JavaScript 연동하기
[ Firebase ] Database JavaScript 연동하기 ( Chat Ex ) 출처: http://codeman77.tistory.com/65?category=715553 [☆]
2018.04.04 -
[ Firebase ] 웹에서 클라우드 메시징 요청보내기
[ Firebase ] 웹에서 클라우드 메시징 요청보내기 출처: http://codeman77.tistory.com/56?category=715553 [☆]
2018.04.04 -
메세지 창 띄우기 2018.03.27
-
[PHP] 주민등록번호 유효성 검사
// 주민등록번호 유효성 검사: 올바른 경우 true, 틀린 경우 false 반환 function resnoCheck($resno1, $resno2) { $resno = $resno1 . $resno2; // 형태 검사: 총 13자리의 숫자, 7번째는 1..4의 값을 가짐 if (!ereg('^[[:digit:]]{6}[1-4][[:digit:]]{6}$', $resno)) return false; // 날짜 유효성 검사 $birthYear = ('2' >= $resno[6]) ? '19' : '20'; $birthYear += substr($resno, 0, 2); $birthMonth = substr($resno, 2, 2); $birthDate = substr($..
2018.03.21