ich habe folgendes Problem
Ich habe in PHP eine Ausgabe von Datum und Zeit, Funktioniert doch leider ist die Ausgabe in Englisch
Kann mir jemand hierbei weiterhelfen?
Ich habe in PHP eine Ausgabe von Datum und Zeit, Funktioniert doch leider ist die Ausgabe in Englisch
PHP-Code:
<?php
$today = getdate();
$month = $today['month'];
$mday = $today['mday'];
$year = $today['year'];
$hours = $today['hours'];
$minutes = $today['minutes'];
$now = sprintf ("$mday $month $year %02d:%02d", $hours, $minutes);
echo "$now";
?>
Kommentar