当前位置: 技术问答>linux和unix
Linux 下怎样把UNIX timestamp 时间转化为其他格式?
来源: 互联网 发布时间:2015-12-14
本文导语: 请问Linux 下怎样把UNIX timestamp 时间转化为其他格式?有没有系统函数???? | struct tm *localtime(const time_t *); 返回tm是一个结构体,成员为,年,月,日等 | #include char...
请问Linux 下怎样把UNIX timestamp 时间转化为其他格式?有没有系统函数????
|
struct tm *localtime(const time_t *);
返回tm是一个结构体,成员为,年,月,日等
返回tm是一个结构体,成员为,年,月,日等
|
#include
char *asctime(const struct tm *tm);
char *asctime_r(const struct tm *tm, char *buf);
char *ctime(const time_t *timep);
char *ctime_r(const time_t *timep, char *buf);
struct tm *gmtime(const time_t *timep);
struct tm *gmtime_r(const time_t *timep, struct tm *result);
struct tm *localtime(const time_t *timep);
struct tm *localtime_r(const time_t *timep, struct tm *result);
time_t mktime(struct tm *tm);
char *asctime(const struct tm *tm);
char *asctime_r(const struct tm *tm, char *buf);
char *ctime(const time_t *timep);
char *ctime_r(const time_t *timep, char *buf);
struct tm *gmtime(const time_t *timep);
struct tm *gmtime_r(const time_t *timep, struct tm *result);
struct tm *localtime(const time_t *timep);
struct tm *localtime_r(const time_t *timep, struct tm *result);
time_t mktime(struct tm *tm);
|
man asctime