THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

PHP date_timezone_get() Function

PHP Date/Time PHP Date/Time Reference

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);
?>
Run example »

Definition and Usage

The date_timezone_get() function returns the time zone of the given DateTime object.


Syntax

date_timezone_get(object);

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 PHP Date/Time Reference