Buscar..


Crear un nuevo DateTime

Instale DateTime en su PC y luego utilícelo en el script perl:

use DateTime;

Crear nueva fecha y hora actual

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

Luego puedes acceder a los valores de fecha y hora de los elementos:

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

Para obtener solo el tiempo:

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

Para obtener solo la fecha:

my $date = $dt->ymd; # fecha de regreso con el formato yyyy-mm-dd

Trabajando con elementos de fecha y hora.

Establecer elemento único:

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

Establecer muchos elementos:

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

Añadir duración a datetime

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

Resta de fecha y hora:

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

Obtendrá el resultado es de 4 días.

Calcular el tiempo de ejecución del código.

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);

Esto imprimirá el tiempo de ejecución del Código en segundos.



Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow