0

所以,我有一个 cron 工作,代码如下:

class UGCJReminder extends UGCronJob {
/**
 * return the cron description
 */
protected function getDescription()
{
    return Yii::t('userGroupsModule.cron', 'manda email para os usuarios cadastrados para cadastrar suas atividades');
}

/**
 * return the cron table model name
 */
protected function getCronTable()
{
    return 'UserGroupsCron';
}

/**
 * return the cron name
 */
protected function getName()
{
    return 'reminder';
}

/**
 * returns the number of days that have to pass before performing this cron job
 */
protected function getLapse()
{
    return 1;
}

/**
 * return the model
 */
protected function getModel()
{
    return new UserGroupsUser;
}

/**
 * return the action method
 */
protected function getAction()
{
        Yii::import('ext.yii-mail.YiiMailMessage');
        $message = new YiiMailMessage;
        $message->setBody('Message', 'text/html');
        $message->subject = 'Lembrete';
        $message->addTo('my-email');
        $message->from = Yii::app()->params['adminEmail'];
        return Yii::app()->mail->send($message);
}

/**
 * return the action criteria
 */
protected function getCriteria()
{
            return new CDbCriteria;
}

/**
 * return the interested database fields
 */
protected function getColumns()
 {
        return array('email' => UserGroupsUser::ACTIVE);
        #return NULL;
 }
}

我对用户组(Yii 模块)要求的文档进行了所有其他更改,并且 cron 列表显示我的 cron 已安装并正在运行。但是,它每天运行多次,每天只运行一次。那么我做错了什么?

我也会接受这个问题的另一种解决方案(在每天确定的时间发送电子邮件)。请考虑我正在使用 Yii,因此希望有一种在框架内执行此操作的方法(例如,使用扩展)

PS:如果你知道关于这一切的好的文档来源(因为用户组、Cron-tab 和 Yii 本身在记录这一切是如何工作的方面并不那么强大)我仍然会对此感兴趣

4

1 回答 1

0

我以前从未使用过这个扩展。但我正在查看源代码并注意这个片段:

https://github.com/nickcv/userGroups/blob/master/components/UGCron.php#L206

if ($cItem->last_occurrence <= date('Y-m-d', time() - (3600 * 24 * $cItem->lapse)).' 00:00:00') {
    ...
    $cItem->last_occurrence = date('Y-m-d').' 00:00:00';                    
    $cItem->save();
}

我想问你下一个问题:

  1. if运算符在您的情况下是否正常工作?
  2. $cItem->last_occurrencecron 运行后会更新吗?
  3. 你用的是什么版本的PHP?
于 2012-11-12T20:39:40.460 回答