首页 > 代码库 > php简单监控

php简单监控

<?php

  passthru(‘curl -I http://www.ch.com|grep "200 OK">/dev/null‘,$returnvalue);

  if ($returnvalue =http://www.mamicode.com/= 0)

  {

  echo(‘<font color=green size=3><B>www.ch.com</B></font><br/>‘);}

  else

  {

  echo(‘<font color=red size=3><B>www.ch.com</B></font><br/>‘);

  }

?>



<?php

$VAR = file_get_contents("/tmp/ntpd-result-time");

  if ($VAR < 60)

  {

  echo("<font color=green size=3><B>相差$VAR 秒</B></font><br/>");}

  else

  {

  echo("<font color=red size=3><B>相差$VAR 秒</B></font><br/>");

  }

?>


php简单监控