336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

IP유효성 체크

function checkIPAddr($ip){
	$result = 0;

	if (preg_match('/^(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:[.](?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}$/',$ip)){
    		$result = 1;
	}
	return $result;
}
$test = checkIPAddr('1.1.1.1')
echo $test


'Web Service' 카테고리의 다른 글

OWASP Honeypot  (0) 2022.03.10
Nginx SSH 설정 & Rewrite 설정  (0) 2016.07.12
우분투에 nginx, MySQL, PHP(LEMP) 설치  (0) 2016.03.09

+ Recent posts