GNU/Linux >> Linux Esercitazione >  >> Linux

Come ottenere l'ora UTC

Puoi usare gmtime:

struct tm * gmtime (const time_t * timer);
Convert time_t to tm as UTC time

Ecco un esempio:

std::string now()
{
  std::time_t now= std::time(0);
  std::tm* now_tm= std::gmtime(&now);
  char buf[42];
  std::strftime(buf, 42, "%Y%m%d %X", now_tm);
  return buf;
}

Uscita:

20131220 19:33:51

link ideone:http://ideone.com/pCKG9K


Una risposta di fascia alta in C++ è usare Boost Date_Time.

Ma potrebbe essere eccessivo. La libreria C ha ciò di cui hai bisogno in strftime , la pagina di manuale contiene un esempio.

/* from man 3 strftime */

#include <time.h>
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[]) { 
    char outstr[200];
    time_t t;
    struct tm *tmp;
    const char* fmt = "%a, %d %b %y %T %z";

    t = time(NULL);
    tmp = gmtime(&t);
    if (tmp == NULL) {
        perror("gmtime error");
        exit(EXIT_FAILURE);
    }

    if (strftime(outstr, sizeof(outstr), fmt, tmp) == 0) { 
        fprintf(stderr, "strftime returned 0");
        exit(EXIT_FAILURE); 
    } 
    printf("%s\n", outstr);
    exit(EXIT_SUCCESS); 
}        

Ho aggiunto un esempio completo basato su ciò che è nella pagina di manuale:

$ gcc -o strftime strftime.c 
$ ./strftime
Mon, 16 Dec 13 19:54:28 +0000
$

Linux
  1. Ottieni l'età del file specificato?

  2. Come ottenere un tipo di dati di variabili in Zsh?

  3. Linux:come ottenere l'ora dell'orologio da parete di un processo in esecuzione?

  4. Ottieni il tempo di creazione/creazione del file??

  5. Come ricordare le opzioni di comando??

Come ottenere la data e l'ora correnti in Python

Come ottenere la data e l'ora correnti in JavaScript

Come ottenere tempo di avvio e tempo di attività su Ubuntu

Come ottenere il tuo indirizzo IP su Linux

Ottieni secondi dall'epoca in Linux

Come ottenere la data/ora di creazione del file in Bash/Debian?