Saturday, May 9, 2026
HomeLanguagesPHP | DateTimeImmutable::setTimezone() Function

PHP | DateTimeImmutable::setTimezone() Function

The DateTimeImmutable::setTimezone() function is an inbuilt function in PHP which is used to set the time zone for the created DateTimeImmutable object. This function returns the DateTimeImmutable object or False on failure.

Syntax:

DateTimeImmutable::setTimezone ( TimeZone )

Parameters: This function accepts one parameters which is illustrated below:-

TimeZone: This parameter is used to set the DateTimeZone object representing the desired time zone.

Return Values: This function returns the DateTimeImmutable object on success or False on failure.

Below programs illustrate the DateTimeImmutable::setTimezone() function :

Program 1 :




<?php
// PHP program to illustrate DateTimeImmutable::setTimezone()
// function
    
// Creating a DateTimeImmutable() object 
$DateTimeImmutable = new DateTimeImmutable('2019-10-07', new DateTimeZone('Asia/Kolkata')); 
    
// Getting the above datetime format 
echo $DateTimeImmutable->format('d-m-Y H:i:sP') . "\n"; 
    
// Calling the DateTimeImmutable::setTimezone() function
$a = $DateTimeImmutable->setTimezone(new DateTimeZone('Asia/Singapore')); 
    
// Getting a new DateTimeImmutable object
echo $a->format('d-m-Y H:i:sP'); 
?>


Output:

07-10-2019 00:00:00+05:30
07-10-2019 02:30:00+08:00

Program 2:




<?php
// PHP program to illustrate DateTimeImmutable::setTimezone()
// function
    
// Creating a DateTimeImmutable() object 
$DateTimeImmutable = new DateTimeImmutable('2019-10-07'); 
    
// Getting the above datetime format 
echo $DateTimeImmutable->format('d-m-Y H:i:sP') . "\n"; 
    
// Calling the DateTimeImmutable::setTimezone() function
$a = $DateTimeImmutable->setTimezone(new DateTimeZone('Asia/Singapore')); 
    
// Getting a new DateTimeImmutable object
echo $a->format('d-m-Y H:i:sP'); 
?>


Output:

07-10-2019 00:00:00+00:00
07-10-2019 08:00:00+08:00

Reference:
https://devdocs.io/php/datetimeimmutable.settimezone

RELATED ARTICLES

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS