哈希空间 Ctrl + F 进行搜索
首页 php手册中文版 CSS中文手册 哈希文档 Markdown在线工具

DateTimeImmutable::setDate

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

DateTimeImmutable::setDateSets the date

说明

public DateTimeImmutable::setDate(int $year, int $month, int $day): DateTimeImmutable

Returns a new DateTimeImmutable object with the current date of the DateTimeImmutable object set to the given date.

参数

object

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

year

Year of the date.

month

Month of the date.

day

Day of the date.

返回值

返回带有修改数据的新 DateTimeImmutable 对象。

范例

示例 #1 DateTimeImmutable::setDate() example

面向对象风格

<?php
$date 
= new DateTimeImmutable();
$newDate $date->setDate(200123);
echo 
$newDate->format('Y-m-d');
?>

以上例程会输出:

2001-02-03

示例 #2 Values exceeding ranges are added to their parent values

<?php
$date 
= new DateTimeImmutable();

$newDate $date->setDate(2001228);
echo 
$newDate->format('Y-m-d') . "\n";

$newDate $date->setDate(2001229);
echo 
$newDate->format('Y-m-d') . "\n";

$newDate $date->setDate(2001143);
echo 
$newDate->format('Y-m-d') . "\n";
?>

以上例程会输出:

2001-02-28
2001-03-01
2002-02-03

参见

打开 哈希空间 微信小程序中查看更佳