Ejemplo n.º 1
0
 public function task_notice_end()
 {
     $task_list = db_factory::query(sprintf(" select * from %switkey_task where task_status=5 and  sp_end_time < '%s' and model_id = '1' and task_union!=2", TABLEPRE, time()));
     if (is_array($task_list)) {
         foreach ($task_list as $k => $v) {
             $task_notice_obj = new sreward_task_class($v);
             $task_notice_obj->time_notice_end();
         }
     }
 }