COMING SOON 🚀

t

전화번호에 하이픈 넣기

register_form_update.php, orderformupdate.php 파일에서 사용할 수 있습니다.

사용법은 아래와 같습니다.
$mb_tel = hyphen_tel_number($mb_tel);
$od_tel = hyphen_tel_number($od_tel);
$od_b_tel = hyphen_tel_number($od_b_tel);

common.lib.php 파일에 넣어주세요.

// 전화번호의 숫자만 취한 후 중간에 하이픈(-)을 넣는다.
// 전화번호의 숫자만 취한 후 중간에 하이픈(-)을 넣는다.
function hyphen_tel_number($tel)
{
$tel = preg_replace("/[^0-9]/", "", $tel);
if (substr($tel,0,2)=='02')
return preg_replace("/([0-9]{2})([0-9]{3,4})([0-9]{4})$/", "\\1-\\2-\\3", $tel);
else if (strlen($tel)=='8' && (substr($tel,0,2)=='15' || substr($tel,0,2)=='16' || substr($tel,0,2)=='18'))
return preg_replace("/([0-9]{4})([0-9]{4})$/", "\\1-\\2", $tel);
else
return preg_replace("/([0-9]{3})([0-9]{3,4})([0-9]{4})$/", "\\1-\\2-\\3", $tel);
}
|

댓글 4개

고맙습니다.
자바스크립트면 더좋을텐데 말이죠 감사합니다.
감사합니다~
감사합니다~
댓글을 작성하시려면 로그인이 필요합니다.

그누보드5 팁자료실

+
제목 글쓴이 날짜 조회
11년 전 조회 8,056
11년 전 조회 6,050
11년 전 조회 5,721
11년 전 조회 6,361
11년 전 조회 1.2만
11년 전 조회 1.5만
11년 전 조회 6,335
11년 전 조회 1.2만
11년 전 조회 1.6만
11년 전 조회 7,255
11년 전 조회 9,314
11년 전 조회 1.7만
11년 전 조회 9,530
11년 전 조회 8,628
12년 전 조회 1만
12년 전 조회 7,097
12년 전 조회 7,802
12년 전 조회 7,024
12년 전 조회 9,214
12년 전 조회 1.2만
12년 전 조회 3.3만
12년 전 조회 1.7만
12년 전 조회 7,394
12년 전 조회 8,159
12년 전 조회 1.1만
12년 전 조회 6,495
12년 전 조회 5,398
12년 전 조회 1만
12년 전 조회 1.2만
12년 전 조회 1만