Your code for
date_to_unix failed because your split statement didn't produce expected results. I am not sure why you use eval, but anyway, I have quickly wrote my version of the
date_to_unix and
get_date which would do the same thing.
use strict;
use Time::Local;
my $date = "09/23/2003 14:30";
printf "%s\n", &date_to_unix($date);
printf "%s\n", &get_date(&date_to_unix($date));
exit(0);
sub date_to_unix()
{
my ($mon,$day,$year,$hour,$min) =
$_[0] =~ /(\d+)\/(\d+)\/(\d+)\s(\d+):(\d+)/;
return undef unless ($day and $mon and $year);
return timelocal(0,$min,$hour,$day,$mon-1,$year-1900);
}
sub get_date()
{
my $time = shift || time();
my ($sec, $min, $hour, $day, $mon, $year) = localtime($time);
# use sprintf to do string formatting for you in one go.
# %02d will print digit preceeded with 0 if less than 10 and so on
+...
return sprintf "%02d/%02d/%04d %02d:%02d",
$mon+1, $day, $year+1900, $hour, $min;
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.