當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Updater::check方法代碼示例

本文整理匯總了PHP中Updater::check方法的典型用法代碼示例。如果您正苦於以下問題:PHP Updater::check方法的具體用法?PHP Updater::check怎麽用?PHP Updater::check使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Updater的用法示例。


在下文中一共展示了Updater::check方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: foreach

     foreach ($method_blacklist as $method) {
         if (method_exists($obj, $method)) {
             showmessage('插件不符合性能要求規定,請與插件作者聯係', 'admin.php#plugin');
         }
     }
     if (property_exists($obj, 'modules')) {
         foreach ($obj->modules as $module) {
             if ($module['type'] == 'cron') {
                 DB::insert('cron', array_merge($module['cron'], array('nextrun' => TIMESTAMP)), false, true);
             }
         }
     }
     CACHE::update('plugins');
     showmessage('啟用插件成功!', 'admin.php#plugin#');
 case 'update_check':
     $ret = Updater::check();
     if (is_array($ret)) {
         $return = array('status' => 1, 'files' => $ret);
     } else {
         $return = array('status' => $ret, 'files' => array());
     }
     echo json_encode($return);
     exit;
 case 'get_file':
     echo json_encode(Updater::loop());
     exit;
 case 'write_file':
     echo json_encode(Updater::write_file());
     exit;
 case 'disable_plugin':
     if ($formhash != $_GET['formhash']) {
開發者ID:istobran,項目名稱:Tieba_Sign,代碼行數:31,代碼來源:admin.php

示例2: cron_set_nextrun

<?php

if (!defined('IN_KKFRAME')) {
    exit;
}
cron_set_nextrun($tomorrow);
CACHE::clear();
$date = date('Ymd', TIMESTAMP + 900);
DB::query("INSERT IGNORE INTO sign_log (tid, uid, `date`) SELECT tid, uid, '{$date}' FROM my_tieba");
$delete_date = date('Ymd', TIMESTAMP - 86400 * 30);
DB::query("DELETE FROM sign_log WHERE date<'{$delete_date}'");
saveSetting('extsign_uid', 0);
saveSetting('autoupdate_uid', 0);
Updater::check();
cloud::check_remote_disabled();
開發者ID:istobran,項目名稱:Tieba_Sign,代碼行數:15,代碼來源:daily.php


注:本文中的Updater::check方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。