I was thinking I might be able to get the header from the URL, and that should have the date/time, but that seems very clumsy and it seems like there should be a better way.

If you are using WWW::Mechanize anyway, why not? The server tells you the date with every response. Try something like:

$date = $mech->response()->header("Date");
You'll probably want to use either Date::Parse or Time::ParseDate to do something useful with it after you get it.

Update: I should mention that trying to do something at a precise time based on a time you retrieve from a remote server is really tricky. One second isn't very precise but, especially as the time you'll get from the server will probably only be reported with a granularity of one second, it'll be tough to get that exact.

Edit: Changed "request" to "response" for correctness.

-sauoq
"My two cents aren't worth a dime.";

In reply to Re: Website Date by sauoq
in thread Website Date by gsparx

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.