c語言將 unix時間戳轉爲 年-月-日 時:分:秒 庫函數方法

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

void timestamp(char* test_time) {
	struct tm* t;
	time_t tt;

	time(&tt);
	t = localtime(&tt);

	sprintf(test_time, "%4d-%02d-%02d %02d:%02d:%02d", t->tm_year + 1900, \
t->tm_mon + 1, t->tm_mday, t->tm_hour, t->tm_min, t->tm_sec);
}

int main() {
	char time_now[32] = { 0 };
	timestamp(time_now);
	printf("%s", time_now);
	return 0;
}

 

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

int main(int argc, const char* argv[])
{
	time_t t;
	struct tm* p;
	t = 1581927963;
	p = gmtime(&t);
	char s[100];
	strftime(s, sizeof(s), "%Y-%m-%d %H:%M:%S", p);
	printf("%d: %s\n", (int)t, s);
	return 0;
}

用sprintf或者strftime轉換時間格式。

值得注意的是,圖一測試時我寫的是localtime,圖二我寫的是gmtime。localtime就是轉爲當地時間,gmtime是專爲UTC時間。中國時間與UTC相差8小時。由於我在英國唸書,冬令時時,UTC時間爲格林威治時間,故相等,而夏令時,英國時間爲UTC+1,此時不等。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章