휴대폰 본인확인 및 성인인증 필드를 enum 에서 tinyint 로 변경

This commit is contained in:
gnuboard
2013-05-03 16:01:25 +09:00
parent d9420b458d
commit 3c5d68a800
9 changed files with 71 additions and 69 deletions

View File

@ -1982,11 +1982,4 @@ function hyphen_hp_number($hp)
$hp = preg_replace("/[^0-9]/", "", $hp);
return preg_replace("/([0-9]{3})([0-9]{3,4})([0-9]{4})$/", "\\1-\\2-\\3", $hp);
}
// 휴대폰 본인확인을 받은 회원인지를 가린다.
function hp_certify($member)
{
return substr($member['mb_hp_certify'],0,1) == '0' ? 'N' : 'Y';
}
?>