用Linux中计划任务+PHP网页程序对服务器运行状况(2)

function alert($host)
{
    /* 下面的linuxidc@linuxidc.com改成你的邮箱地址 */
    phpmailer('linuxidc@linuxidc.com', 'Monitoring', $host.' down');
}

/* 下面的网址改成你要监控的网址 */
$host = 'http://www.linuxidc.com/linuxidc.php';

/* 下面的内容改成你的网站错误信息的提示内容,防止你自定义了错误页面之类的 请使用英文 */
$find = 'No Page Find,Please Try Again Later!';


if (!check($host, $find)){
   
   
    echo "server error!<br />";
    echo "begin send mail<br />";
    send_emial_unix("linuxidc@linuxidc.com","server error!","server:".$host." has some errors!Please check now!");
    //send_email("linuxidc@linuxidc.com","发现服务器异常","服务器".$host."服务有异常,请及时检查。");
}
else{
    echo "serror ok !";
}

?>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wydzgx.html