|
|
|
<?
/**************************************************************************
* Konvertierung des US-Datums in das deutsche
* Auf http://www.gabber.de/ sieht man ein Beispiel ;-))
*
* Autor: Mark Kronsbein (mk@html-design.com)
* Datum der letzten Änderung: 18. Mai 1999
* Anmerkung: Der meiste Code an diesem Script stammt von
* Frédéric Pierron (pierron@ext.jussieu.fr)
* Ich habe den Code nur modifiziert und übersetzt.
*
* License: GPL. Wäre nett, wenn ich eine Mailbekommen würde,
* wo das Script eingesetzt wird
*
* Conversion of US Date into German Date
* See http://www.gabber.de/ for "working" Example ;-))
*
* Author: Mark Kronsbein (mk@html-design.com)
* Last Modified Date: 18 May 1999
* NOTE: Most of this code is made by
* Frédéric Pierron (pierron@ext.jussieu.fr)
* I just translated it and modified it a bit.
*
* License: GPL. Would be nice, if you mail me the URL you run this Script
*
* Original script:
* http://px.sklar.com/code-pretty.html?code_id=112
* http://px.sklar.com/code.html?code_id=112
*
* Einfach alles unten in ein File namens date.inc kopieren und dann wie folgt aufrufen:
* Just include everything below in a file called date.inc. Example call:
*
* <?
* include ("date.inc");
* print "Heute ist $tag, der $n. $monat $jahr";
* print (date( " H:i:s"));
* ?>
**************************************************************************/
/* Start von date.inc
Start of date.inc */
/* Zeitzone auf Mitteleuropäische Zeit umstellen
falls der Server nicht in DE steht. Sonst auskommentieren.
If the Server is not in Germany, set the right Timezone. */
putenv( "TZ=MET");
/* Name der Tage auf deutsch */
/* Name of days in German */
$name_tag[0] = "Sonntag";
$name_tag[1] = "Montag";
$name_tag[2] = "Dienstag";
$name_tag[3] = "Mittwoch";
$name_tag[4] = "Donnerstag";
$name_tag[5] = "Freitag";
$name_tag[6] = "Samstag";
/* Name der Monate auf deutsch */
/* Name of months in German */
$name_monat[1] = "Januar";
$name_monat[2] = "Februar";
$name_monat[3] = "März";
$name_monat[4] = "April";
$name_monat[5] = "Mai";
$name_monat[6] = "Juni";
$name_monat[7] = "Juli";
$name_monat[8] = "August";
$name_monat[9] = "September";
$name_monat[10] = "Oktober";
$name_monat[11] = "November";
$name_monat[12] = "Dezember";
$num_tag = date( "w");
$num_monat = date( "m");
/* Test, ob der aktuelle Monat < 10 ist */
/* Test, if the current month is < 10th month */
$test = substr($num_monat,0,1);
if ($test == "0") {
$num = substr($num_monat,1,1);
$num_monat = $num;
}
$jahr = date( "Y");
$n = date( "d");
$tag = $name_tag[$num_tag];
$monat = $name_monat[$num_monat];
/* Ende von date.inc
End of date.inc */
?> |
|
| time date modified changed last getlastmod last footer Categories : Misc, Date Time | | | Calendars to choose a range of dates , reservation events ... Categories : PHP, Calendar, Java Script, Date Time | | | Example of using the pcCalendar class, article 1468 on weberdev.com. Calendar example. Categories : PHP, Date Time, PHP Classes, Calendar | | | This script allows people to add their favorite quotes to your website. This
could easily be modified to be a guestbook script or comment page script. Categories : PHP, Complete Programs, HTML and PHP, Misc | | | Enchancing dd/mm/yyyy forms with unobtrusive javascript Categories : Java Script, HTML, User Interface, Date Time | | | Function to convert Arabic numbers into Roman Numerals Categories : Algorithms, PHP, Date Time | | | Simple conversion functions to change MySQL dates to arrays, arrays to MySQL dates.
Categories : PHP, Arrays, Date Time, Databases, MySQL | | | function to generate calendars on the fly.
Categories : Calendar, PHP, Date Time | | | Monthly and Daily Upcoming Events calendar. Categories : Date Time, PostgreSQL, PHP, Calendar, Databases | | | Customizable Calendar Class Categories : HTML and PHP, Date Time, PHP, PHP Classes, Calendar | | | Change the background color of a website daily dynamically using the php date function to get the current day of the week and depending on that day, set the background color for the web page. Categories : PHP, Date Time, Beginner Guides, Web Design | | | PHP Round Clock - Must have Gif support to use this. Categories : PHP, Date Time, Graphics | | | Phorum, MySQL, Language, UK date format, MySQL UK Date format Categories : PHP, Date Time, Strings, MySQL, Databases | | | PHP Calendar Web App Categories : PHP, Databases, MySQL, Date Time, Calendar | | | Shell script to calculate the day of the week, given a date DD MM YYYY Categories : Shell Scripting, Date Time | |
|
|