Skip to content
Server
2013.04.01 18:39

make ping with PHP(핑테스트)

조회 수 11144 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

make ping with PHP(핑테스트)

 

 

<?php
$ip = $_SERVER['127.0.0.1'];
exec("ping -n 4 $ip 2>&1", $output, $retval);
if ($retval != 0) { 
echo "no!"; 
} 
else 
{ 
echo "yes!"; }
?>

 

 

 

 

<?php
  function ping($host) {
    exec(sprintf('ping -c 1 -W 5 %s', escapeshellarg($host)), $res, $rval);
    return $rval === 0;
  }

  $hosts_to_ping = array('10.140.206.123', '127.0.0.1');
?>

<ul>
<?php foreach ($hosts_to_ping as $host): ?>
  <li>
    <?php echo $host; ?>
    <?php $up = ping($host); ?>
    (<img src="<?php echo $up ? 'on' : 'off'; ?>"
          alt="<?php echo $up ? 'up' : 'down'; ?>">)
  </li>
<?php endforeach; ?>
</ul>

 

 

 

 

 

 

 

 

 

 

로그인 후 댓글쓰기가 가능합니다.

?

  1. 03
    Nov 2010
    12:07

    Windows XP 인증방법 개선으로 업데이트 기능 정상 사용하기

    Category컴퓨터잡담 Views6590
    Read More
  2. 01
    Nov 2010
    08:57

    서비스팩3 설치 후 Client Session manager 문제, SM00905 오류 해결방법

    Category컴퓨터잡담 Views14407
    Read More
  3. 30
    Oct 2010
    08:15

    북마크 링크 주소모음

    Category컴퓨터잡담 Views102936
    Read More
  4. 25
    Oct 2010
    18:18

    레지스트리 팁 - 로그오프하지 않고 반영하기

    Category컴퓨터잡담 Views5297
    Read More
  5. 11
    Oct 2010
    17:32

    Autohotkey 파일 저장시 한글 깨짐 현상

    Category컴퓨터잡담 Views11170
    Read More
  6. 11
    Oct 2010
    00:05

    javascript만으로 폼전송

    Category컴퓨터잡담 Views13313
    Read More
  7. 10
    Oct 2010
    23:51

    [javascript_tip]자바스크립트 값 넘기기

    Category컴퓨터잡담 Views18961
    Read More
  8. 10
    Oct 2010
    23:49

    자바스크립트로 전송(submit) 버튼 누르기

    Category컴퓨터잡담 Views103644
    Read More
  9. 09
    Oct 2010
    12:54

    [엑셀] SUMPRODUCT 함수 이용, 조건에 따른 중복항목 제외 후 카운트하는 함수

    Category컴퓨터잡담 Views14579
    Read More
  10. 04
    Oct 2010
    08:25

    [엑셀] 와일드카드 문자의 변환처리 방법

    Category컴퓨터잡담 Views10960
    Read More
  11. 02
    Oct 2010
    13:31

    레지스트리 컨트롤로 XP의 가상메모리 페이징 파일의 강제 자동설정을 끌 수 있는 방법

    Category컴퓨터잡담 Views9075
    Read More
  12. 02
    Oct 2010
    13:23

    램디스크 숨기는 방법

    Category컴퓨터잡담 Views5670
    Read More
  13. 02
    Oct 2010
    11:01

    autohotkey 변수의 이해

    Category컴퓨터잡담 Views20631
    Read More
  14. 01
    Oct 2010
    15:17

    인터넷익스플로러 로딩속도 빠르게 하는방법

    Category컴퓨터잡담 Views12097
    Read More
  15. 01
    Oct 2010
    15:12

    -응답없음- 으로 멈춰버린 프로그램 대기시간 줄이는 방법

    Category컴퓨터잡담 Views7843
    Read More
  16. 01
    Oct 2010
    11:30

    스누피 고스트

    Category컴퓨터잡담 Views6031
    Read More
  17. 29
    Sep 2010
    18:46

    그림안에 투명텍스트박스 넣기.

    Category컴퓨터잡담 Views9564
    Read More
  18. 29
    Sep 2010
    18:20

    PHP Text to Image

    Category컴퓨터잡담 Views13950
    Read More
  19. 25
    Sep 2010
    16:09

    오류 socket error #10061 connection

    Category컴퓨터잡담 Views54086
    Read More
  20. 20
    Sep 2010
    18:00

    엑셀에서 날짜와 시간 계산하는 법

    Category컴퓨터잡담 Views31664
    Read More
Board Pagination Prev 1 ... 36 37 38 39 40 ... 46 Next
/ 46

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소