in reply to How do I find the difference in days between two dates, in a cool perl way?
Now $delta contains the number of days between the two dates.my @start = $dt1->utc_rd_values; my @finish = $dt2->utc_rd_values; my $delta = $finish[0] - $start[0];
|
|---|