目录

PHP date_date_set() 函数

❮ PHP 日期/时间参考

示例

返回一个新的 DateTime 对象,设置一个新的日期,然后格式化日期:

<?php
$date=date_create();
date_date_set($date,2020,10,30);
echo date_format($date,"Y/m/d");
?>
亲自试一试 »

定义和用法

date_date_set() 函数设置一个新日期。


语法

date_date_set( object, year, month, day)

参数值

Parameter Description
object Required. Specifies a DateTime object returned by date_create()
year Required. Specifies the year of the date
month Required. Specifies the month of the date
day Required. Specifies the day of the date


技术细节

返回值: 成功时返回一个新的 DateTime 对象。失败时为 FALSE
PHP 版本: 5.2+
PHP 变更日志: PHP 5.3:返回值从 NULL 更改为 DateTime(成功时)

❮ PHP 日期/时间参考