标签:php
<?php
passthru(‘curl -I http://www.ch.com|grep "200 OK">/dev/null‘,$returnvalue);
if ($returnvalue == 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
原文地址:http://leomars.blog.51cto.com/683246/1876428