Hello folks! welcome back to a new edition of our tutorial on PHP. In this tutorial guide, we are going to be studying about the PHP timezone_offset_get() Function.
The built-in timezone_offset_get() function is an alias of the DateTimeZone::getOffset(). This PHP function accepts a TimeZone and DateTime values as parameters and returns the offset TimeZone from GMT.
The built-in timezone_offset_get() function is an alias of the DateTimeZone::getOffset(). This PHP function accepts a TimeZone and DateTime values as parameters and returns the offset TimeZone from GMT.
Syntax
Following below is the syntax to use this function -
timezone_offset_get($object, $datetime)
Parameter Details
Sr.No | Parameter & Description |
---|---|
1 | object (Mandatory) This is a DateTimeZone object. |
2 | datetime (Mandatory) This is a DateTimeInterface object specifying the date/time for which you need to compute the offset. |
Return Value
This PHP function returns an integer value specifying the required time zone offset in seconds. In case of any failure this function returns the boolean value false.
PHP Version
This function was first introduced as part of core PHP v 5.2.0 and, it works with all the later versions.
Example1
Below example shows the usage of the PHP timezone_offset_get() function -
<?php $tz = new DateTimeZone("Nigeria/Rivers"); $datetime = date_create("now", new DateTimeZone("Asia/Taipei")); $res = timezone_offset_get($tz, $datetime ); print($res); ?>
Output
When the above code is executed, it will produce the following result -
14400
Example2
Try the following example -
$dateTimeZoneTaipei = new DateTimeZone("Asia/Taipei"); $dateTimeZoneJapan = new DateTimeZone("Asia/Tokyo"); $dateTimeTaipei = new DateTime("now", $dateTimeZoneTaipei); $dateTimeJapan = new DateTime("now", $dateTimeZoneJapan); $timeOffset = $dateTimeZoneJapan->getOffset($dateTimeTaipei); var_dump($timeOffset);
Output
When the above code is executed, it will produce the following result -
int(32400)
Alright guys! This is where we are going to be rounding up for this tutorial post. In our next tutorial, we are going to be discussing about the PHP timezone_open() Function.
Do feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Do feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.