The Date::Calc module will let you do date computations back to the year 1 C.E.. The Delta_Days function should be just what you need.
my $dd=Delta_Days(1,1,1,$cur_yr,$cur_mo,$cur_da);
If you're interested in how to do the calculation by hand I highly recommend checking out Calenderical Calculations by Derschowitz and Reingold. Should be available at any bookstore w/ a reasonably complete techincal section.
Looking at vrooms answer and mine reminds me that you need to be careful in how you define epoch. In general terms eopch is the start-date of your calendar. So when does your calendar start ???
  1. Jan 1, 1970 (unix Epoch)
  2. Jan 1, 1900 (another epoch used in computers)
  3. Jan 1, 1 (Gregorian epoch)
  4. etc..
In my answer I had assumed the Gregorian epoch. If you want your "time from epoch" in seconds and your epoch is 1/1/1970 then the time() function returns that.

In reply to Re: Time since epoch by lhoward
in thread Time since epoch by jjhorner

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.