in reply to Re^2: Date question
in thread Date question
parse_date() is not exported by default, so you can either write
$date2 = HTTP::Date::parse_date($date);
or import the function into your namespace
use HTTP::Date qw(parse_date);
(See Exporter for what this is about)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Date question
by htmanning (Friar) on Oct 30, 2008 at 22:28 UTC | |
by almut (Canon) on Oct 30, 2008 at 22:49 UTC |