datecalc

CiTor

Mitglied
hi guys,
ich arbeite im Moment an einem Kalender in PHP. Ich habe jedoch ein Problem mit einer Matheformel. Meine Frage: Wie kann ich berechnen, welcher Wochentag and welchem Datum ist? Es waere voll cool, wenn das jemand wissen wuerde :)

yo, dea CiTor
 
PHP:
<?
$wochentag = date("w", mktime(0, 0, 0, $monat, $tag, $jahr));

switch ($wochentag) {
	case 0: $wochentag = "Sonntag"; break;
	case 1: $wochentag = "Montag"; break;
	case 2: $wochentag = "Dienstag"; break;
	[...usw...]
}
?>


reima
 
es geht einfacher mit:

PHP:
setlocale(LC_TIME, "german");
$wochentag = date("l", mktime(0, 0, 0, $monat, $tag, $jahr));
setlocale(LC_TIME, "english");
 
Also wenn dann so:
PHP:
setlocale(LC_TIME, "german");
$wochentag = strftime("%A", mktime(0, 0, 0, 5, 22, 2002));
setlocale(LC_TIME, "english");


reima
 
Zurück