PHP date_date_set() 函数
PHP date_date_set() 函数
实例
返回一个新的 DateTime 对象,设置一个新的日期,然后格式化日期:
<?php
$date=date_create();
date_date_set($date,2020,10,30);
echo date_format($date,"Y/m/d");
?>
$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);
参数 | 描述 |
---|---|
object | 必需。规定一个由 date_create() 返回的 DateTime 对象。 |
year | 必需。规定日期中的年。 |
month | 必需。规定日期中的月。 |
day | 必需。规定日期中的日。 |
技术细节
返回值: | 如果成功则返回一个新的 DateTime 对象,如果失败则返回 FALSE。 |
---|---|
PHP 版本: | 5.2+ |
更新日志: | 从 PHP 5.3+ 开始,如果成功,返回值则从 NULL 变成 DateTime。 |
PHP Date/Time 参考手册
相关文章
- PHP echo 和 print 语句
- PHP EOF(heredoc) 使用说明
- PHP 魔术常量
- PHP $_POST 变量
- PHP Session
- PHP array_intersect_key() 函数
- PHP array_reduce() 函数
- PHP array_replace_recursive() 函数
- PHP array_slice() 函数
- PHP array_values() 函数
- PHP arsort() 函数
- PHP each() 函数
- PHP end() 函数
- PHP sizeof() 函数
- PHP sort() 函数
- PHP uasort() 函数
- PHP uksort() 函数
- PHP 5 Directory 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数