unix时间值转指定格式的时间串

time_t cur_time;
cur_time = unix_timestamp;//需要转的unix时间值
struct tm *time_tm;
time_tm = localtime(&cur_time);
char cur_time_buf[30];
memset(cur_time_buf, 0, 30);
strftime(cur_time_buf, 30, "%Y年%m月%d日 %H:%M:%S", time_tm); // 将转换后的时间转换为标准格式

你可能感兴趣的:(unix,struct)