(PHP 5 >= 5.2.0, PHP 7)
DateTime::getOffset -- DateTimeImmutable::getOffset -- DateTimeInterface::getOffset -- date_offset_get — Returns the timezone offset
Stil obiect-orientat
Stil procedural
Returns the timezone offset.
object
Doar pentru stilul procedural: Un obiect DateTime întors de funcția date_create()
Returns the timezone offset in seconds from UTC on success
sau FALSE
în cazul eșecului.
Example #1 DateTime::getOffset() example
Stil obiect-orientat
<?php
$winter = new DateTime('2010-12-21', new DateTimeZone('America/New_York'));
$summer = new DateTime('2008-06-21', new DateTimeZone('America/New_York'));
echo $winter->getOffset() . "\n";
echo $summer->getOffset() . "\n";
?>
Stil procedural
<?php
$winter = date_create('2010-12-21', timezone_open('America/New_York'));
$summer = date_create('2008-06-21', timezone_open('America/New_York'));
echo date_offset_get($winter) . "\n";
echo date_offset_get($summer) . "\n";
?>
Exemplele de mai sus vor afișa:
-18000 -14400
Note: -18000 = -5 hours, -14400 = -4 hours.