摘要: //时间戳转北京时间字串 CString getLocalDate(__int64 timestamp) { timestamp += 28800;//GTM偏移8个时区得到北京时间 tm p; gmtime_s(&p, &timestamp); char s[80]; strftime(s, 80 阅读全文
posted @ 2021-07-01 11:08 圐圙 阅读(1049) 评论(0) 推荐(0)