本文整理汇总了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();
}
}