5

我想将昨天的日期转换为以下格式的字符:YYYYMMDD(没有斜线点等)。

我正在使用此代码来获取今天的日期:

time_t now;

struct tm  *ts;  
char yearchar[80]; 

now = time(NULL);  
ts = localtime(&now);

strftime(yearchar, sizeof(yearchar), "%Y%m%d", ts);

我将如何调整此代码以使其生成昨天的日期而不是今天的日期?

非常感谢。

4

7 回答 7

10

mktime()函数将规范化struct tm您传递的日期(即,它将像 2020/2/0 这样的超出范围的日期转换为范围内的等效日期 2020/1/31) - 所以您需要做的就是:

time_t now;
struct tm  *ts;  
char yearchar[80]; 

now = time(NULL);
ts = localtime(&now);
ts->tm_mday--;
mktime(ts); /* Normalise ts */
strftime(yearchar, sizeof(yearchar), "%Y%m%d", ts);
于 2011-01-21T02:05:36.193 回答
6

怎么加

now = now - (60 * 60 * 24)

在一些非常罕见的极端情况下(例如在闰秒期间)可能会失败,但应该在 99.999999% 的时间里做你想做的事。

于 2011-01-20T15:27:55.583 回答
2

请尝试此代码

#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <string.h>
 
int main(void)
{
    char yestDt[9];
    time_t now = time(NULL);
    now = now - (24*60*60);
    struct tm *t = localtime(&now);
    sprintf(yestDt,"%04d%02d%02d", t->tm_year+1900, t->tm_mday,t->tm_mon+1);
    printf("Target String: \"%s\"", yestDt);
    return 0;
}
于 2013-01-24T04:08:14.610 回答
2

time(NULL);只需从应该做的事情中减去一天的秒数。更改此行:

now = time(NULL);

对此:

now = time(NULL) - (24 * 60 * 60);
于 2011-01-20T15:28:09.630 回答
0
time_t now;
int day;

struct tm  *ts;  
char yearchar[80]; 

now = time(NULL);  
ts = localtime(&now);
day = ts->tm_mday;

now = now + 10 - 24 * 60 * 60;
ts = localtime(&now);
if (day == ts->tm_mday)
{
  now = now - 24 * 60 * 60;
  ts = localtime(&now);
}

strftime(yearchar, sizeof(yearchar), "%Y%m%d", ts);

也适用于闰秒。

于 2011-01-20T18:36:57.727 回答
0

您可以在将ts结构传递给strftime. 月份中的日期包含在tm_mday成员中。基本程序:

/**
 * If today is the 1st, subtract 1 from the month
 * and set the day to the last day of the previous month
 */
if (ts->tm_mday == 1)
{
  /**
   * If today is Jan 1st, subtract 1 from the year and set
   * the month to Dec.
   */
  if (ts->tm_mon == 0)
  {
    ts->tm_year--;
    ts->tm_mon = 11;
  }
  else
  {
    ts->tm_mon--;
  }

  /**
   * Figure out the last day of the previous month.
   */
  if (ts->tm_mon == 1)
  {
    /**
     * If the previous month is Feb, then we need to check 
     * for leap year.
     */
    if (ts->tm_year % 4 == 0 && ts->tm_year % 400 == 0)
      ts->tm_mday = 29;
    else
      ts->tm_mday = 28;
  }
  else
  {
    /**
     * It's either the 30th or the 31st
     */
    switch(ts->tm_mon)
    {
       case 0: case 2: case 4: case 6: case 7: case 9: case 11:
         ts->tm_mday = 31;
         break;

       default:
         ts->tm_mday = 30;
    }
  }
}
else
{
  ts->tm_mday--;
}

编辑:是的,一个月中的日子从 1 开始编号,而其他所有内容(秒、分钟、小时、工作日和一年中的日子)从 0 开始编号。

于 2011-01-20T16:37:20.313 回答
0

你已经很接近了。首先,泰勒的解决方案几乎可以工作——你需要使用(24*60*60*1000)time(3) 返回毫秒。但是看看那个struct tm。它具有日期的所有组成部分的字段。

更新:该死,我的错误 - time(3) 确实返回秒。我在想另一个电话。不过还是看看里面的内容struct tm吧。

于 2011-01-20T15:33:21.137 回答