linux系統時間程式設計(8) UTC秒數轉本地字串時間
<time.h> | ||
---|---|---|
char* ctime ( const time_t* timer ); | (1) | |
char* ctime_r( const time_t* timer, char* buf ); | (2) | (since C23) |
errno_t ctime_s( char buf, rsize_t bufsz, const time_t timer ); | (3) | (since C11) |
該函式執行了兩步操作,相當於:
asctime(localtime(timer)) or asctime(localtime_r(timer, &(struct tm){0}))
返回的字串格式:
Www Mmm dd hh:mm:ss yyyy\n
- Www - the day of the week (one of Mon, Tue, Wed, Thu, Fri, Sat, Sun).
- Mmm - the month (one of Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec).
- dd - the day of the month
- hh - hours
- mm - minutes
- ss - seconds
- yyyy - years
同樣執行緒不安全。
#define __STDC_WANT_LIB_EXT1__ 1
#include <time.h>
#include <stdio.h>
int main(void)
{
time_t result = time(NULL);
printf("%s", ctime(&result));
#ifdef __STDC_LIB_EXT1__
char str[26];
ctime_s(str,sizeof str,&result);
printf("%s", str);
#endif
}
Possible output:
Tue May 26 21:51:03 2015
Tue May 26 21:51:03 2015
相關文章
- linux系統時間程式設計(6) 日曆時間tm轉字串strftime函式Linux程式設計字串函式
- 轉換UTC時間格式
- JavaScript 轉換成UTC時間JavaScript
- linux系統時間程式設計(9) 計算程式片段執行時間clock函式Linux程式設計函式
- Linux時間設定系統時間、硬體時間和時間服務Linux
- 如何將UTC時間轉換為Unix時間戳(How to convert UTC time to unix timestamp)時間戳
- JavaScript 時間轉換為UTC格式JavaScript
- linux系統時間設定Linux
- Linux設定系統時間Linux
- python中的時間轉換,秒級時間戳轉string,string轉時間Python時間戳
- C# 獲取utc時間,以及utc datetime 互相轉化C#
- 時間相差秒數_Golang 時間操作大全Golang
- 安卓核心時間使用的是UTC時間安卓
- PAT乙級1026程式執行時間(秒數轉換為時間)(值得學習)
- mysql時間操作(時間差和時間戳和時間字串的互轉)MySql時間戳字串
- 時間戳與時間字串的多時區轉換時間戳字串
- Python秒轉換成時間(時分秒)Python
- 直播系統程式碼,linux date修改系統時間Linux
- Linux系統如何更改時間時區Linux
- Linux系統時間同步方法。Linux
- linux時間子系統(三)Linux
- 如何設計一個秒殺系統-許令波-極客時間
- python時間戳和時間字串的各種轉換Python時間戳字串
- mysql時間與字串之間相互轉換MySql字串
- ORACLE計算2個時間段相差時間小時、分、秒Oracle
- Linux系統自動更新時間Linux
- 線上直播系統原始碼,預設倒數計時,自定義輸入時間倒數計時原始碼
- postgresql如何將字串轉為時間SQL字串
- python字串轉換為日期時間Python字串
- MySQL字串轉時間戳查詢MySql字串時間戳
- Java程式碼實現帶時區時間字串轉為LocalDateTime物件Java字串LDA物件
- Linux 檢視程式啟動時間、執行時間Linux
- 【Python】Python 使用http時間同步設定系統時間原始碼PythonHTTP原始碼
- Shell指令碼——Linux系統中的時間猜數字指令碼Linux
- 雲伺服器Linux系統設定時間同步設定伺服器Linux
- oracle時間轉字串去除前導0Oracle字串
- php日期時間如何轉換為字串PHP字串
- golang日期字串與時間戳轉換Golang字串時間戳