Service
Startseite
Kontakt
Impressum
Tools & Scripte
PHP-Tools
PHP-Schnipsel
CSS-Tools
Formulare
Buttonvorlagen
MySQL-Schnipsel
Werbung
Partner
Hygieneartikel
Webseiten-Tools.de
PHP-Schnipsel: Zeitangaben
aktueller UNIX-Zeitstempel: 1732182956
PHP-Code:
<?php $timestamp = time(); echo "aktueller UNIX-Zeitstempel: ".$timestamp; ?>
Datum und Uhrzeit: 21.11.2024 - 10:55:56
PHP-Code:
<?php $datum = date("d.m.Y"); $zeit = date("h:i:s"); echo "Datum: ".$datum." - Uhrzeit: ".$zeit; ?>
Dieser Monat hat 30 Tage.
PHP-Code:
<?php $tage = date("t"); echo "Dieser Monat hat ".$tage." Tage."; ?>
Wochentag ausgeben - Heute ist: Donnerstag
PHP-Code:
<?php $tag = date("w"); $wtag = array ("Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"); $wochentag = $wtag[$tag]; echo "Wochentag: ".$wochentag; ?>
© 2009 Webproducts-Store