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 −

 Live Demo

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

Output

The following is the output −

Europe/Paris

Updated on: 24-Dec-2019

20 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements