function ping($host, $port=80, $timeout=6) {
	$fsock = fsockopen($host, $port, $errno, $errstr, $timeout);
	if (!$fsock) {
		return FALSE;
	} else {
		fclose($fsock);
		return TRUE;
	}
}
출처 : http://www.cikorea.net/tip/view/2002/page/1/
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,