use Data:: Calc qw (: wszystko);
_getCOB _getCOB {
mój $mon = "JanFebMarAprMayJunJulAugSepOctNovDec";
mój @date;
mój ($year, $month, $day) = Add_Delta_Days (Dzisiaj (), (0));
mój $dow = Day_of_Week ($year, $month, $day);
#if ($dow == 1) {
# @date = Add_Delta_Days (Dzisiaj (), -3);
#}
#elsif ($dow == 7) {
# @date = Add_Delta_Days (Dzisiaj (), -2);
#}
@date = Add_Delta_Days (Dzisiaj (), -0);
mój $date = $date [2]. "-". substr ($mon, $date [(1)] *3 - 3, 3). "-". $date [(0)];
powrotny $date;
}
mój $cob_date;
$cob_date = &_getCOB ();
druk $cob_date;
|