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 »
The date_timezone_get() function returns the time zone of the given DateTime object.
date_timezone_get(
object)
Parameter | Description |
---|---|
object | Required. Specifies a DateTime object returned by date_create(). |
Return Value: | Returns a DateTimeZone object on success. FALSE on failure |
---|---|
PHP Version: | 5.2+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!