Ricerca…


Crea nuovo DateTime

Installa DateTime sul tuo PC e poi usalo nello script perl:

use DateTime;

Crea nuovo datetime corrente

$dt = DateTime->now( time_zone => 'Asia/Ho_Chi_Minh');

Quindi puoi accedere ai valori degli elementi di data e ora:

$year   = $dt->year;
$month  = $dt->month;
$day    = $dt->day;
$hour   = $dt->hour;
$minute = $dt->minute;
$second = $dt->second;

Per ottenere solo il tempo:

my $time = $dt->hms; #return time con formato hh:mm:ss

Per ottenere solo la data:

my $date = $dt->ymd; #return date with format yyyy-mm-dd

Lavorare con elementi di datetime

Imposta un singolo elemento:

$dt->set( year => 2016 );

Imposta molti elementi:

$dt->set( year => 2016, 'month' => 8);

Aggiungi la durata a datetime

$dt->add( hour => 1, month => 2)

Sottrazione datetime:

my $dt1 = DateTime->new(
      year      => 2016,
      month     => 8,
      day       => 20,
);

my $dt2 = DateTime->new(
      year      => 2016,
      month     => 8,
      day       => 24,
);

my $duration = $dt2->subtract_datetime($dt1);
print $duration->days

Otterrai il risultato è di 4 giorni

Calcola il tempo di esecuzione del codice

use Time::HiRes qw( time );

my $start = time();

#Code for which execution time is calculated
sleep(1.2);

my $end = time();

printf("Execution Time: %0.02f s\n", $end - $start);

Questo stamperà il tempo di esecuzione del codice in secondi



Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow