首页 > 代码库 > 获取当前时间(年/月/日/时/分/秒)

获取当前时间(年/月/日/时/分/秒)

struct tm* GetCurTime(time_t inTime)
{
    struct tm* curTime = localtime(&inTime);
    curTime->tm_year += 1900;
    curTime->tm_mon += 1;
    return curTime;
}

 

获取当前时间(年/月/日/时/分/秒)