本文整理汇总了PHP中cron::lock方法的典型用法代码示例。如果您正苦于以下问题:PHP cron::lock方法的具体用法?PHP cron::lock怎么用?PHP cron::lock使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cron
的用法示例。
在下文中一共展示了cron::lock方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: dirname
require_once 'PSUWordPress.php';
if (substr(php_sapi_name(), 0, 3) == 'cli') {
$config = new PSU\Config();
$config->load();
$GLOBALS['BASE_DIR'] = dirname(__FILE__) . '/..';
$GLOBALS['BASE_URL'] = $config->get('ape', 'base_url');
$GLOBALS['TEMPLATES'] = $GLOBALS['BASE_DIR'] . '/templates';
$command_line = true;
require_once $GLOBALS['BASE_DIR'] . '/includes/HRChecklist.class.php';
$cron = new cron('checklist-trigger', 'page_threshold=20');
if ($cron->checkLock()) {
$cron->log('Employee Exit Checklist Trigger is already running');
exit;
}
//end if
$cron->lock();
}
//end if
$time = time();
$one_month_ago = strtotime('-1 month');
$sql = "SELECT * FROM v_emp_clearance_candidates";
if ($results = PSU::db('banner')->Execute($sql)) {
foreach ($results as $row) {
if ($checklist = HRChecklist::get($row['pidm'], 'employee-exit')) {
if ($checklist['position_code'] == $row['position_code'] && strtotime($checklist['activity_date']) >= $one_month_ago) {
continue;
}
//end if
}
//end if
$person = PSUPerson::get($row['pidm']);