时间格式化函数strftime

Posted claireyuancy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间格式化函数strftime相关的知识,希望对你有一定的参考价值。

??

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

int main()
{
  char timebuf[100]={0};
  time_t timep; 
  struct tm *p_tm; 
  
  timep = time(NULL); 
  p_tm = localtime(&timep); /*获取本地时区时间*/
  
  strftime(timebuf, sizeof(timebuf),"%Y-%m-%d %H:%M:%S",p_tm);
  
  printf("%s\n", timebuf);

  return 0;
}

结果:2015-06-12 03:44:54



以上是关于时间格式化函数strftime的主要内容,如果未能解决你的问题,请参考以下文章

python时间处理,datetime中的strftime/strptime

text strftime中的格式说明符,或者卵石编程中时间函数的时间格式

pandas使用strftime函数将dataframe的日期格式数据列按照指定格式(format)转化为日期(时间)字符串数据列

Python中datetime模块中strftime/strptime函数

(python基础)时间辍time时间元组localtime时间格式化strftime

通过使用字符串时间格式函数strftime的构建下一个字符串