Help for this page

Select Code to Download


  1. or download this
    sub get_date_by_week {
        my $week = shift || 1;
    ...
        my $wc = $week * 7 - $w;
        return strftime($pattern, gmtime($t + $wc * 24 * 3600));
    }