네이버 소셜로그인 성별, 연령 가져오기
plugin/register_member.php
검색
$user_name = isset($user_profile -> username) ? $user_profile -> username : '';
하단 추가
[code]
//$photoURL = $user_profile -> photoURL; // 프로필 사진
$age = $user_profile -> age; // 나이
$user_age = preg_replace("/[^0-9]*/s", "", $age); // 나이의 특수문자 있음
if (!isset($user_age) && $user_age == null) { // 값이 비어있는지 확인
// 값이 비어있으면 어떻게 할건지~
} else {
if ($user_age < 20) {
// 미성년자 빠이
}
}
$birthDay = $user_profile -> birthDay; // 생년월일 월
$birthMonth = $user_profile -> birthMonth; // 생년월일 일
$user_age = $user_age.$birthDay.$birthMonth; // 더하면 생년월일 EX) 901023
$gender = $user_profile -> gender;
if ($gender == "male") {
$gender = "남성";
} else {
$gender = "여성";
}
[/code]
plugin/register_member_update.php
하단 검색
$mb_recommend = get_text(trim($_POST['mb_recommend']));
하단 추가
[code]
$mb_birth = get_text(trim($_POST['mb_birth']));
$mb_sex = get_text(trim($_POST['mb_sex']));
[/code]
검색
mb_recommend = '{$mb_recommend}',
하단 추가
[code]
mb_sex = '{$mb_sex}',
mb_sms = '0',
[/code]
회원가입 폼에 입력
<input type="hidden" name="mb_birth" value="<?php echo $user_age; ?>"/>
<input type="hidden" name="mb_sex" value="<?php echo $gender; ?>"/>
굿!
댓글 5개
혹 첨부파일은 무엇을 첨부하면 되는지요 ?
제가 로그인 화면 첨부했다가 까였어요..ㅠㅠ
실제 본인 나이가 아니라 연령대인 걸로 알고 있습니다.
$age = $user_profile -> age;
$user_ages = substr($age, 0, 2);
if (!isset($age) && $age == null) {
// 값이 비어있으면 어떻게 할건지~
} else {
if ($user_ages < 20) {
// 미성년자 빠이
} else if ($user_ages < 60) {
$user_age = substr((date("Y") - $user_ages + 1), 2, 4);
}
}
20-29에서 20을 가져올지 29를 가져올지...
가져와서 연도로 계산...ㅋ
이런식으로 하면 될듯한데...
게시판 목록
그누보드5 팁자료실
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 공지 | 3년 전 | 4426 | ||
| 2574 | 10개월 전 | 561 | ||
| 2573 | 10개월 전 | 937 | ||
| 2572 |
두리삼촌v
|
10개월 전 | 609 | |
| 2571 | 10개월 전 | 556 | ||
| 2570 | 10개월 전 | 599 | ||
| 2569 |
두리삼촌v
|
10개월 전 | 638 | |
| 2568 |
두리삼촌v
|
10개월 전 | 666 | |
| 2567 |
두리삼촌v
|
10개월 전 | 462 | |
| 2566 |
두리삼촌v
|
10개월 전 | 442 | |
| 2565 | 10개월 전 | 740 | ||
| 2564 | 10개월 전 | 670 | ||
| 2563 | 10개월 전 | 473 | ||
| 2562 | 10개월 전 | 1030 | ||
| 2561 |
|
10개월 전 | 675 | |
| 2560 | 11개월 전 | 919 | ||
| 2559 | 11개월 전 | 657 | ||
| 2558 |
|
11개월 전 | 504 | |
| 2557 | 11개월 전 | 656 | ||
| 2556 | 11개월 전 | 957 | ||
| 2555 | 11개월 전 | 1338 | ||
| 2554 | 11개월 전 | 753 | ||
| 2553 |
|
11개월 전 | 747 | |
| 2552 | 11개월 전 | 676 | ||
| 2551 | 11개월 전 | 864 | ||
| 2550 | 11개월 전 | 766 | ||
| 2549 |
|
11개월 전 | 717 | |
| 2548 | 11개월 전 | 1031 | ||
| 2547 | 11개월 전 | 673 | ||
| 2546 | 11개월 전 | 1206 | ||
| 2545 | 11개월 전 | 663 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기