本文整理汇总了PHP中cron::stopTimer方法的典型用法代码示例。如果您正苦于以下问题:PHP cron::stopTimer方法的具体用法?PHP cron::stopTimer怎么用?PHP cron::stopTimer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cron
的用法示例。
在下文中一共展示了cron::stopTimer方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: time
}
//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']);
$response = HRChecklist::start($person->pidm, strtotime($row['end_date']), 'employee-exit', $row['position_code'], 0);
$checklist_id = $response->id;
if ($checklist_id) {
HRChecklist::email($person, strtotime($row['end_date']), 'ape_checklist_employee_exit', 2, 'employee-exit', $checklist_id, $response);
}
//end if
}
//end foreach
}
//end if
if ($command_line) {
$cron->stopTimer();
$cron->log('Employee Exit Checklist Trigger completed (Run Time: ' . $cron->getRunTime() . ')');
$cron->unlock();
}
//end if