[g5] 일본어 이메일 주소 추출
페이지 정보
본문
lib/common.lib.php
// 이메일 주소 추출
function get_email_address($email)
{
//preg_match("/[0-9a-z._-]+@[a-z0-9._-]{4,}/i", $email, $matches);
preg_match("/\A([a-z0-9_\-\+\/\?]+)(\.[a-z0-9_\-\+\/\?]+)*@([a-z0-9\-]+\.)+[a-z]{2,6}\z/i", $email, $matches);
return $matches[0];
}
추천0
댓글목록
등록된 댓글이 없습니다.