1. 程式人生 > >時間格式化函數strftime

時間格式化函數strftime

content stdio.h ack 格式 track localtime 本地 con 格式化

??

#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