PHP Doku:: Alias von DateTime::getOffset - function.date-offset-get.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatums- und zeitrelevante ErweiterungenDatum und UhrzeitDatum/Uhrzeit Funktionendate_offset_get

Ein Service von Reinhard Neidl - Webprogrammierung.

Datum/Uhrzeit Funktionen

<<date_modify

date_parse_from_format>>

date_offset_get

(PHP 5 >= 5.2.0)

date_offset_getAlias von DateTime::getOffset()

Beschreibung

Diese Funktion ist ein Alias für: DateTime::getOffset()


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
Kae Cyphet
11.10.2010 23:43
The following gets the timezone of the server including daylight savings time changes.

<?php
$seconds
= date_offset_get(new DateTime);
print
$seconds / 3600;
// returns pos/neg decimal (eg. -7 if in PST and DST is active.)
// remember there are time zones with 30 and 45 min offsets
// http://en.wikipedia.org/wiki/Time_zone
?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)