php8.5
Home/ Manual/ datetime / datetimeimmutable/ DateTimeImmutable::setTimezone

DateTimeImmutable::setTimezone

PHP function Edit on GitHub ✎

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

Sets the time zone

Description

DateTimeImmutable::setTimezone(DateTimeZone $timezone): DateTimeImmutable

Returns a new DateTimeImmutable object with a new timezone set.

Parameters

timezone

A DateTimeZone object representing the desired time zone.

Return Values

Returns a new modified DateTimeImmutable object for method chaining. The underlying point-in-time is not changed when calling this method.

Examples

DateTimeImmutable::setTimeZone() example

Oop

php
<?php
$date = new DateTimeImmutable('2000-01-01', new DateTimeZone('Pacific/Nauru'));
echo $date->format('Y-m-d H:i:sP') . "\n";

$newDate = $date->setTimezone(new DateTimeZone('Pacific/Chatham'));
echo $newDate->format('Y-m-d H:i:sP') . "\n";
?>

The above example will output:

output
2000-01-01 00:00:00+12:00
2000-01-01 01:45:00+13:45

See Also

Source: reference/datetime/datetimeimmutable/settimezone.xml · from the official PHP manual (php/doc-en)