in reply to Re: date-time into seconds
in thread date-time into seconds
A suitable candidate in this case would be DateTime::Format::DateParse: "This module is a compatibility wrapper around Date::Parse."
So just use Date::Parse. The first two lines of a three line synopsis:
use Date::Parse; $time = str2time($date);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: date-time into seconds
by ikegami (Patriarch) on Dec 11, 2009 at 17:16 UTC |