PHP date_timezone_get() Function
Example
Return the timezone of the given DateTime object:
<?php
$date=date_create(null,timezone_open("Europe/Paris"));
$tz=date_timezone_get($date);
echo timezone_name_get($tz);
?>
Try it Yourself »
Definition and Usage
The date_timezone_get() function returns the time zone of the given DateTime object.
Syntax
date_timezone_get(object)
Parameter Values
Parameter | Description |
---|---|
object | Required. Specifies a DateTime object returned by date_create(). |
Technical Details
Return Value: | Returns a DateTimeZone object on success. FALSE on failure |
---|---|
PHP Version: | 5.2+ |
❮ PHP Date/Time Reference