本文整理匯總了PHP中Cron::process方法的典型用法代碼示例。如果您正苦於以下問題:PHP Cron::process方法的具體用法?PHP Cron::process怎麽用?PHP Cron::process使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Cron
的用法示例。
在下文中一共展示了Cron::process方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Cron
#!/usr/bin/php
<?php
include_once 'inc.common.php';
define('LOCK_FILE', '/tmp/cron_lock');
$cron = new Cron();
ini_set('memory_limit', '1024M');
ini_set('time_limit', '1800');
if ($key = key($_GET)) {
$cron->process($key);
var_dump(memory_get_peak_usage(true));
exit;
}
if (file_exists(LOCK_FILE) && filemtime(LOCK_FILE) > time() - 3600) {
exit;
}
$time = Database::unix_to_date();
$tasks = Database::order('id', 'asc')->get_vector('cron', array('function', 'period'), 'last_time < ?', $time);
if (empty($tasks)) {
exit;
}
touch(LOCK_FILE);
foreach ($tasks as $task => $period) {
$cron->process($task);
$nexttime = Database::unix_to_date(Transform_Time::parse($period) - 15);
Database::update('cron', array('last_time' => $nexttime), 'function = ?', $task);
}
unlink(LOCK_FILE);
示例2: run
public function run($redirect = false)
{
$this->processRuntimePlugins('startup');
$res = parent::run($redirect);
$this->processRuntimePlugins('shutdown');
$cron = new Cron($this);
if ($cron->isExecutable()) {
$cron->process();
}
}