Thread Aus einem unbestimmten Datum den Wochentag ermitteln
(12 answers)
Opened by umbrella at 2010-07-17 15:04
ich empfehle auch DateTime.
es geht aber auch mit bordmitteln: Code (perl): (dl
)
1 2 3 4 5 6 use Time::Local; # wird mit perl mitgeliefert # in epoch seconds umrechnen my $t = timelocal(0, 0, 0, 24, 11, 2002); # monate 0-11 my $wd = (localtime $t)[6]; # 2 = dienstag Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |