Do not panic!
发布时间:2015-11-21 01:25:04
#include time_t time(time_t *t);---------------以秒为单位返回UTC时间struct tm* gmtime(time_t *t);----------以struct tm的形式返回UTC时间struct tm* localtime(const time_t *t);---------以struct tm的形式返回本地时间char *ctime(const time_t *t);---------以字符串的形式返回本地时间c.........【阅读全文】