E-Mail 체크, IP 체크
컨텐츠 정보
- 18,754 조회
- 57 추천
-
목록
본문
<?
function is_email($email)
{
return preg_match("/^(.+)\\@(.+)\\.(.+)$/", $email);
}
function is_ip($ip)
{
if(preg_match("/^(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})$/", $ip, $match))
if($match[1] < 256 && $match[2] < 256 && $match[3] < 256 && $match[4] < 256)
return true;
return false;
}
?>
출처.. zend.com
function is_email($email)
{
return preg_match("/^(.+)\\@(.+)\\.(.+)$/", $email);
}
function is_ip($ip)
{
if(preg_match("/^(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})$/", $ip, $match))
if($match[1] < 256 && $match[2] < 256 && $match[3] < 256 && $match[4] < 256)
return true;
return false;
}
?>
출처.. zend.com
관련자료
-
링크
댓글 0
등록된 댓글이 없습니다.