PHP因爲是順序執行的腳本語言,多線程編程困難,所以PHP的定時任務相比較JAVA 困難的多,使用Sleep會致使性能極差和系統資源損失,下面我介紹一種高性能,又簡單的方式來解決這個問題。php
//使用TP框架創建restful接口
class OauthController extends Controller {
/* 完成上課提醒 */
public function classReminder() {
//查看今天全部課程
$courses = D("course")->where(array("cday" => date("Y-m-d")))->select();
foreach ($courses as $course) {
$cstime = strtotime($course['cstime']);
$currtime = time();
$cc = $cstime - $currtime;
if ($cc < 60 * 60 && $cc > 5 * 60) {
$ucc = D("user_card_course")->where(array("courseid" => $course["id"]))->select();
foreach ($ucc as $uc) {
$re = D("wxmsg")->where(array("userid" => $uc["userid"], "courseid" => $course["id"], "type" => "上課提醒"))->find();
if ($re) {
echo "發送過了";
continue;
}
$user = D("oauth_user")->find($uc["userid"]);
$this->sendTemMsgForClassReminder($user["openid"], $course["id"], $uc["userid"]);
}
}
}
}
}
複製代碼
#每晚2點備份mysql
0 2 * * * /opt/mysqlBack/bkMysql.sh
#每15分鐘(每小時的 0 15 30 45 分啓動),訪問接口,並將日誌輸出到log
*/15 * * * * wget http://localhost/classreminder >/opt/server/gmfitness-schedule/classreminder.log 2>&1
複製代碼
成功!mysql
換一個訪問個人blog: yondu.viplinux