in reply to How to get time in seconds from localtime(time) to next 21st date of the month?
You can certainly use other modules such as Date::Calc, but it will require additional logic.use Date::Manip; $diff = &DateCalc("now", "21st at midnight"); $seconds = &Delta_Format($diff, 0, "%st");
|
|---|