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);
}
사용법은 아래와 같습니다.
$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개
게시글 목록
| 번호 | 제목 |
|---|---|
| 24149 | |
| 24140 | |
| 24133 | |
| 24125 | |
| 24119 | |
| 24109 | |
| 24105 | |
| 24101 | |
| 24093 | |
| 24089 | |
| 24077 | |
| 24074 | |
| 24071 | |
| 24070 | |
| 24067 | |
| 24056 | |
| 24050 | |
| 24046 | |
| 24043 | |
| 24040 | |
| 24037 | |
| 24036 | |
| 24035 | |
| 24034 | |
| 24021 | |
| 24017 | |
| 24005 | |
| 24002 | |
| 23990 | |
| 23980 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기