Computer >> Computer tutorials >  >> Programming >> PHP

timezone_name_get() function in PHP


The timezone_name_get() function returns the name of the timezone.

Syntax

timezone_name_get(obj)

Parameters

  • obj − A DateTimeZone object.

Return

The timezone_name_get() function returns array on success or FALSE on failure.

Example

The following is an example −

<?php
   $res = timezone_open("Europe/Paris");
   echo timezone_name_get($res);
?>

Output

The following is the output −

Europe/Paris