3.5.2. Solution
If your dates are in Epoch seconds and fall in the range Fri
Dec 13 20:45:52 1901 to Tue Jan 19 03:14:07
2038 (inclusive), subtract one from the other and convert
the seconds to days:
$seconds = $recent - $earlier;
If you have distinct DMYMHS values or are worried about the range
limitations of Epoch seconds, use the Date::Calc module from CPAN. It
can calculate the difference between dates:
use Date::Calc qw(Delta_Days);
$days = Delta_Days( $year1, $month1, $day1, $year2, $month2, $day2);
It also calculates the difference between a pair of dates and times:
use Date::Calc qw(Delta_DHMS);
($days, $hours, $minutes, $seconds) =
Delta_DHMS( $year1, $month1, $day1, $hour1, $minute1, $seconds1, # earlier
$year2, $month2, $day2, $hour2, $minute2, $seconds2); # later