//获取13位时间戳 CString GetUnixTime() { CString nowTime; SYSTEMTIME sysTime; GetLocalTime(&sysTime); time_t unixTime; time(&unixTime); CString cs_uninxtime; CString cs_milliseconds; cs_uninxtime.Format(L"%ld", unixTime); cs_milliseconds.Format(L"%ld", sysTime.wMilliseconds); nowTime = cs_uninxtime + cs_milliseconds; //nowTime.Format(_T("%ld%ld"), unixTime, sysTime.wMilliseconds);//输出UNIX时间戳字符串 return nowTime; }
Unix时间戳(Unix timestamp),或称Unix时间(Unix time)、POSIX时间(POSIX time),是一种时间表示方式,定义为从格林威治时间1970年01月01日00时00分00秒起至现在的总秒数。Unix时间戳不仅被使用在Unix系统、类Unix系统中(比如Linux系统),也在许多其他操作系统中被广泛采用。
参考:http://www.jiandande.com/html/bianchengjiqiao/vc__biancheng/2012/1104/1517.html