in reply to How to get time in seconds from localtime(time) to next 21st date of the month?

This sounds pretty simple to achieve without modules. I won't write the code, but here's how I'd do it.

Use time to get the current epoch seconds Use localtime to convert that to date/time If the date is greater than 21 then increment the month number end set the date to 21 and the time to 12am use Time::Local::timelocal to convert that time to epoch seconds Subtract that from your first number
  • Comment on Re: How to get time in seconds from localtime(time) to next 21st date of the month?
  • Download Code