if (!function_exists('phone_number_check')) {
function phone_number_check($pString)
{
$is_rule = false;
$re_phoneNum = preg_replace('/-/', '', $pString);
$mobile = preg_match('/^01[016789]{1}-?([0-9]{3,4})-?[0-9]{4}$/', $pString);
$tel = preg_match('/^(02|0[3-6]{1}[1-5]{1})-?([0-9]{3,4})-?[0-9]{4}$/', $pString);
$rep = preg_match('/^(15|16|18)[0-9]{2}-?[0-9]{4}$/', $pString);
$rep2 = preg_match('/^(02|0[3-6]{1}[1-5]{1})-?(15|16|18)[0-9]{2}-?[0-9]{4}$/', $pString);
$num = preg_match('/^(070|(050[2-8]{0,1})|080|013)-?([0-9]{3,4})-?[0-9]{4}$/', $pString);
if ($mobile != false) {
$is_rule = true;
if (strlen($re_phoneNum) > 11) {
$is_rule = false;
}
} else if ($tel != false) {
$is_rule = true;
if (strlen($re_phoneNum) > 11) {
$is_rule = false;
}
} else if ($rep != false) {
$is_rule = true;
if (strlen($re_phoneNum) != 8) {
$is_rule = false;
}
} else if ($num != false) {
$is_rule = true;
if (strlen($re_phoneNum) > 12) {
$is_rule = false;
}
} else {
$is_rule = false;
}
if ($rep2 == true) {
$is_rule = false;
}
return $is_rule;
}
}
'Develop > PHP' 카테고리의 다른 글
Symbolic link를 이용한 PHP 소스 배포시 문제점 (0) | 2019.04.23 |
---|---|
전화번호 국내 지역화 코드 (0) | 2018.10.23 |
Trait (0) | 2018.05.02 |
Use JWT with public-key cryptography (0) | 2018.04.24 |
php_value 값 설정하기 (0) | 2018.02.02 |