Skip to content

Instantly share code, notes, and snippets.

@ytkhs
Created October 12, 2011 17:41
Show Gist options
  • Save ytkhs/1281944 to your computer and use it in GitHub Desktop.
Save ytkhs/1281944 to your computer and use it in GitHub Desktop.
sub _get_day_of_week {
my($y,$m,$d) = @_;
my @wdays = qw(日 月 火 水 木 金 土);
if ($m < 3) {$y—; $m+=12;}
my $w = ($y+int($y/4) - int($y/100) + int($y/400) + int((13*$m+8)/5) + $d) % 7;
return $wdays[$w];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment