Help for this page

Select Code to Download


  1. or download this
    use Time::Local qw/timegm_nocheck/;
    
    ...
    my ($year,$julian_day) = $date_string =~ /^(\d\d\d\d)(\d\d\d)$/;
    my $gmt = timegm_nocheck 0,0,0,$julian_day,0,$year;
    # ...  do something with the gmt value