cat /root/script/check-ntpd.sh
#!/bin/sh
DATELOCAL=`date "+%s"`
DATEREMOTE=`ssh x.x.x.x date "+%s"`
echo $DATELOCAL-$DATETEL|bc|sed 's/-//' > /tmp/ntpd-result-time
加进crontab
<?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/>"); } ?>
若要单次执行,则如下所示:
system("/root/script/check-ntpd.sh",$VAR); 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/>"); }