繼續轉 [轉]php版本的cron定時任務執行器

來源:互聯網
上載者:User

標籤:style   blog   class   c   code   java   

由於伺服器crontab只能精確到分鐘,那程式的起點也是分鐘。

一共包括但部分:

一、設定檔:

設定檔是用來返回要執行的定時任務檔案,注意一下*的使用就行了,有兩個模式,就是

Y-m-d H:i        :年 月 日 時 分N H:i            :星期(1 - 7|周一 - 周日) 時 分

設定檔:croning.php

/** * 工作管理員設定檔 *  * Y-m-d H:i        :年 月 日 時 分 * N H:i            :星期(1 - 7|周一 - 周日) 時 分 *  * 2013-12-25 19:49 : 固定時間,只執行一次 * *-12-25 20:00    : 每年的某月某日 某小時某分 * 2013-12-25 *:49  : 某天的每個小時的49分都執行一次 * *-*-* 20:00      : 每天晚上8點0分執行 * *-*-* *:*        :每分鐘都在執行 * 2 20:01          :每周二的20:01時間都執行一次 *  * * 號表示當前位置的任何時間。以此類推.... *  * 格式: * array( *      key=>value, * ); *  * 說明: * key是定義的執行時間,value是執行的檔案,可以是數組或者字串,當同一時間有多個任務執行時,為了避免key的覆蓋請用一維數組模式。 *  */return array(    ‘2013-12-25 19:49‘=>‘123.php‘,    ‘2013-12-* 18:00‘=>‘456.php‘,    ‘1 08:00‘=>‘6546.php‘,    ‘*-12-25 19:49‘=>array(‘444.php‘,‘456.php‘));

 

二、伺服器cronjob主要執行的php檔案:

主要處理與分析哪些檔案是當時可以執行的。以及寫入執行記錄檔案。

<?php/** * cron任務統一執行的檔案,沒有逾時 */header(‘Content-Type:text/html; charset=utf-8‘);set_time_limit(0);define(‘APP_ROOT‘, dirname(__FILE__));define(‘AHA_ROOT‘, dirname(APP_ROOT));define(‘CORE_ROOT‘, AHA_ROOT . ‘/__core‘);define(‘DATA_ROOT‘, AHA_ROOT . ‘/data‘);define(‘MODEL_ROOT‘, APP_ROOT . ‘/model‘);define(‘ONING_ROOT‘, APP_ROOT . ‘/oning‘); //定時執行檔案目錄require CORE_ROOT . ‘/Common.php‘;require CORE_ROOT . ‘/AHA.php‘; //載入架構核心檔案spl_autoload_register(array(‘Common‘, ‘loadClassFile‘));AHA::initConfig(include APP_ROOT . ‘/_config/inc.php‘); //載入設定檔//不存在執行的設定檔時if (!file_exists(APP_ROOT . ‘/_config/croning.php‘)) {    exit(‘cron failed,please check the cron config!‘);}$__all = include APP_ROOT . ‘/_config/croning.php‘;//資料不合法時if (!$__all || !is_array($__all)) {    exit(‘cron failed,please check the cron config!‘);}$__echo = true; //是否輸出到螢幕$__time_star = microtime(true);$__now = time();Common::fileLog(DATA_ROOT . ‘/log/cron_index.log‘, ‘執行cron開始******************************‘ . date(‘Y-m-d H:i:s‘, $__now) . ‘******************************‘, $__echo);$__onFile = array();if ($__all) {    foreach ($__all as $__key => $__value) {        if (strpos($__key, ‘-‘) === false) {//每周的處理            preg_match(‘@^([\d\*]+) ([\d\*]+):([\d\*]+)[email protected]‘, $__key, $match);        } else {//正常的處理            preg_match(‘@^([\d\*]+)\-([\d\*]+)\-([\d\*]+) ([\d\*]+):([\d\*]+)[email protected]‘, $__key, $match);        }        if ($match) {            array_shift($match);            if (__getPreg($match, $__now)) {//是否是要執行的檔案                $__onFile = array_merge($__onFile, is_array($__value) ? $__value : array($__value));            }        }    }}if ($__onFile) {    $__onFile = array_unique($__onFile);    foreach ($__onFile as $__value) {        if (file_exists(ONING_ROOT . ‘/‘ . $__value)) {            $__time_star2 = microtime(true);            Common::fileLog(DATA_ROOT . ‘/log/cron_index.log‘, $__value . ‘ 執行開始----------‘ . date(‘Y-m-d H:i:s‘) . ‘-----------‘, $__echo);            include ONING_ROOT . ‘/‘ . $__value;            Common::fileLog(DATA_ROOT . ‘/log/cron_index.log‘, $__value . ‘ 執行結束(花費時間:‘ . ((microtime(true) - $__time_star2) * 1000) . ‘ms)-------------‘, $__echo);        }    }}Common::fileLog(DATA_ROOT . ‘/log/cron_index.log‘, ‘執行cron結束(一共執行時間:‘ . ((microtime(true) - $__time_star) * 1000) . ‘ms)*************‘ . date(‘Y-m-d H:i:s‘) . ‘*****************‘ . "\n\n", $__echo);/** * 處理正則結果並返回該檔案是否是當時要執行 * @param array $match      正則結果,數組 * @param integer $__now    當時時間戳記 * @return bool */function __getPreg($match, $__now) {    $back = false;    list($__Y, $__m, $__d, $__N, $__H, $__i) = explode(‘-‘, date(‘Y-m-d-N-H-i‘, $__now));    $argc = count($match);    if ($argc === 3) {        $argc = $match[0] === ‘*‘ ? $__N : $match[0];        $argc.=‘ ‘;        $argc.=$match[1] === ‘*‘ ? $__H : $match[1];        $argc.=‘:‘;        $argc.=$match[2] === ‘*‘ ? $__i : $match[2];        $back = date(‘N H:i‘, $__now) === date($argc, $__now) ? true : false;    } elseif ($argc === 5) {        $argc = $match[0] === ‘*‘ ? $__Y : $match[0];        $argc.=‘-‘;        $argc.=$match[1] === ‘*‘ ? $__m : $match[1];        $argc.=‘-‘;        $argc.=$match[2] === ‘*‘ ? $__d : $match[2];        $argc.=‘ ‘;        $argc.=$match[3] === ‘*‘ ? $__H : $match[3];        $argc.=‘:‘;        $argc.=$match[4] === ‘*‘ ? $__i : $match[4];        $back = date(‘Y-m-d H:i‘, $__now) === date($argc, $__now) ? true : false;    }    return $back;}

三、眾多要執行的定時檔案:

這個是真正要執行的代碼:包括採集,資料整理與分析。。。。,檔案路徑寫到設定檔的value中去。同一時間執行的檔案,記得一維數組模式。

 

來源:http://www.pangyiguang.com/a_76

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.