略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: DateTimeImmutable::setTimezone

2024-05-04

DateTimeImmutable::setTimezone

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

DateTimeImmutable::setTimezoneSets the time zone

说明

public DateTimeImmutable::setTimezone(DateTimeZone $timezone): DateTimeImmutable

Returns a new DateTimeImmutable object with a new timezone set.

参数

object

仅过程化风格:由 date_create() 返回的 DateTime 类型的对象。此函数会修改这个对象。

timezone

A DateTimeZone object representing the desired time zone.

返回值

Returns a new modified DateTimeImmutable object for method chaining.

范例

示例 #1 DateTimeImmutable::setTimeZone() example

面向对象风格

<?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";
?>

以上例程会输出:

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

参见

add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/datetimeimmutable.settimezone.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3