Thursday, November 20, 2025
HomeLanguagesPHP | timezone_name_get() Function

PHP | timezone_name_get() Function

The timezone_name_get() function is an inbuilt function in PHP which is used to return the name of the timezone. The date time object is sent as a parameter to the timezone_name_get() function and it returns the name of the timezone on success or False on failure.

Syntax:

string timezone_name_get( $object )

Parameters: This function accepts single parameter $object which is mandatory. It is used to specifies the DateTimeZone object.

Return Value: This function returns the name of the timezone on success or False on failure.

Exceptions: The timezone_name_get() function is an alias of DateTimeZone::getName() function.

Below programs illustrate the timezone_name_get() function in PHP:

Program 1:




<?php
  
// Opening the timezone of America/Chicago
$timezone = timezone_open("America/Chicago");
  
// Displaying the name of the timezone
echo ("The name of the timezone is " . timezone_name_get($timezone));
?>


Output:

The name of the timezone is America/Chicago

Program 2:




<?php
  
// Opening the default timezone
echo ("Default time zone is " . date_default_timezone_get());
echo "\n";
  
// Declaring a new timezone
$new_timezone = 'America/Chicago';
     
if( date_default_timezone_set( $new_timezone) )
{
  echo "New time zone is ". date_default_timezone_get();
}
  
?>


Output:

Default time zone is UTC
New time zone is America/Chicago

Related Articles:

Reference: http://php.net/manual/en/function.timezone-name-get.php

RELATED ARTICLES

Most Popular

Dominic
32404 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6775 POSTS0 COMMENTS
Nicole Veronica
11924 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11994 POSTS0 COMMENTS
Shaida Kate Naidoo
6903 POSTS0 COMMENTS
Ted Musemwa
7159 POSTS0 COMMENTS
Thapelo Manthata
6859 POSTS0 COMMENTS
Umr Jansen
6846 POSTS0 COMMENTS