PHP+crontab 完美實現定時任務

PHP因爲是順序執行的腳本語言,多線程編程困難,所以PHP的定時任務相比較JAVA 困難的多,使用Sleep會致使性能極差和系統資源損失,下面我介紹一種高性能,又簡單的方式來解決這個問題。php

步驟

  1. 編寫restful接口,能夠用TP這樣的框架,或者直接寫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"]);
                }
            }
        }
    }
    }
複製代碼
  1. linux添加定時任務,crontab -e 編輯任務
#每晚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
複製代碼
  1. wq!保存。

成功!mysql


換一個訪問個人blog: yondu.viplinux

相關文章
相關標籤/搜索