mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 02:31:58 +01:00
13 lines
172 B
PHP
13 lines
172 B
PHP
<?php
|
|
$tage = array(
|
|
"Sonntag",
|
|
"Montag",
|
|
"Dienstag",
|
|
"Mittwoch",
|
|
"Donnerstag",
|
|
"Freitag",
|
|
"Samstag");
|
|
$tag = date("w");
|
|
echo $tage[$tag];
|
|
?>
|