THE WORLD'S LARGEST WEB DEVELOPER SITE

PHP timezone_name_get() Function

❮ PHP Date/Time Reference

Example

Return the name of the timezone:

<?php
$tz=timezone_open("Europe/Paris");
echo timezone_name_get($tz);
?>
Run example »

Definition and Usage

The timezone_name_get() returns the name of the timezone.


Syntax

timezone_name_get(object);

Parameter Description
object Required. Specifies a DateTimeZone object

Technical Details

Return Value: Returns a timezone name from the list of timezones
PHP Version: 5.2+

❮ PHP Date/Time Reference