mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 18:51:56 +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];
|
||
|
?>
|