mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 10:41:56 +01:00
14 lines
218 B
PHP
14 lines
218 B
PHP
|
<?php
|
||
|
# Quelle: http://www.schattenbaum.net/php/
|
||
|
$tage = array(
|
||
|
"Sonntag",
|
||
|
"Montag",
|
||
|
"Dienstag",
|
||
|
"Mittwoch",
|
||
|
"Donnerstag",
|
||
|
"Freitag",
|
||
|
"Samstag");
|
||
|
$tag = date("w");
|
||
|
echo $tage[$tag];
|
||
|
?>
|