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_open() Function.
The built-in timezone_open() function is an alias of DateTimeZone::_construct(). This function accepts TimeZone string value as a parameter and creates a DateTimeZone object.
The built-in timezone_open() function is an alias of DateTimeZone::_construct(). This function accepts TimeZone string value as a parameter and creates a DateTimeZone object.
Syntax
Following below is the syntax to use this function -
timezone_open($timezone)
Parameter Details
Sr.No | Parameter & Description |
---|---|
1 | timezone (Mandatory) This is a string value representing a timezone. |
Return Value
It returns the DateTimeZone object. In case of failure, this function returns the boolean value false.
PHP Version
This PHP function was first introduced as part of core PHP v 5.2.0 and, it works with all the later versions.
Example1
Below example demonstrates the usage of the PHP timezone_open() function -
<?php $tz = "Nigeria/Rivers"; $res = timezone_open($tz); print_r($res); ?>
Output
When the above code is executed, it will produce the following result -
DateTimeZone Object ( [timezone_type] => 3 [timezone] => Nigeria/Rivers )
Example2
Try the following example -
$dateSrc = '2017-06-25 1:50 GMT'; $dateTime = date_create( $dateSrc); $DateTimeZone = timezone_open ( 'America/Chicago' ); date_timezone_set( $dateTime, $DateTimeZone ); $NewDateTimeZone = date_timezone_get($dateTime); echo 'New timeZone is '. timezone_name_get($NewDateTimeZone); echo "\n"; # Using second function. $dateTime = new DateTime($dateSrc); $DateTimeZone = new DateTimeZone( 'America/Chicago' ); $dateTime->setTimezone( $DateTimeZone ); $NewDateTimeZone = $dateTime->getTimezone (); echo 'New timeZone is '. timezone_name_get ($NewDateTimeZone);
Output
When the above code is executed, it will produce the following result -
New timeZone is America/Chicago New timeZone is America/Chicago
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_transitions_get() 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.