我这里有一个片段: http://ideone.com/fywv3j

也在这里发布它:

#include <stdio.h>
#include <time.h>

int gtime_to = 20131231;

int main() {
  time_t current_time, licence_expiry_time;
  struct tm licence_expiry_time_struct;
  memset(&licence_expiry_time_struct, 0, sizeof(struct tm));
  licence_expiry_time_struct.tm_mday = gtime_to % 100;                  // get the day
  licence_expiry_time_struct.tm_mon = ((gtime_to % 10000) / 100) - 1;   // get the month
  licence_expiry_time_struct.tm_year = gtime_to / 10000;                // get the year
  licence_expiry_time_struct.tm_hour = 0;
  licence_expiry_time_struct.tm_min = 0;
  licence_expiry_time_struct.tm_sec = 0;
  licence_expiry_time_struct.tm_wday = 0;
  licence_expiry_time_struct.tm_yday = 0;
  licence_expiry_time_struct.tm_isdst = -1;
  licence_expiry_time = mktime(&licence_expiry_time_struct);
  time(&current_time); 
  printf("date = %d, month = %d, year = %d\n", licence_expiry_time_struct.tm_mday, licence_expiry_time_struct.tm_mon, licence_expiry_time_struct.tm_year);
  printf("cur = %d, expiry = %d, diff = %d", current_time, licence_expiry_time, difftime(licence_expiry_time, current_time));
  return 0;
}

输出 mktime()-1 对于我尝试过的每一个可能的价值。

这是行cur = 1386084345, expiry = -1, diff = -25165824在哪里价值 到期 不应该 -1. 。谁能告诉我我在哪里做错?

有帮助吗?

解决方案

您的一年应该是自1900年以来的偏移。这很可能是罪魁祸首。

尝试:

licence_expiry_time_struct.tm_year = gtime_to / 10000 - 1900; 

通常,使用 mktime() 强烈建议从有效开始 tm 首先结构(即致电 localtime())然后更改字段。

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top