将十进制时间表示转换为unix时期
发布时间:2020-12-16 01:45:38 所属栏目:安全 来源:网络整理
导读:我有一个时间存储在20110103101419形式的64位int(即代表2011-01-03 10:14:19).自1970年以来如何将其转换为秒? 解决方法 我的C有点生疏,但看着另外两个答案,我会写一个函数如下,返回epoch后的秒数或-1出错的情况. #include stdio.h#include time.htime_t con
我有一个时间存储在20110103101419形式的64位int(即代表2011-01-03 10:14:19).自1970年以来如何将其转换为秒?
解决方法
我的C有点生疏,但看着另外两个答案,我会写一个函数如下,返回epoch后的秒数或-1出错的情况.
#include <stdio.h> #include <time.h> time_t convertDecimalTime(long dt) { struct tm time_str; time_str.tm_isdst = -1; time_str.tm_sec = dt%100; dt/=100; time_str.tm_min = dt%100; dt/=100; time_str.tm_hour = dt%100; dt/=100; time_str.tm_mday = dt%100; dt/=100; time_str.tm_mon = dt%100-1; dt/=100; time_str.tm_year = dt%10000 - 1900; return mktime(&time_str); } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |