目录

PHP date_isodate_set() 函数

❮ PHP 日期/时间参考

示例

将 ISO 日期设置为 2013 年的第 5 周:

<?php
$date=date_create();
date_isodate_set($date,2013,5);
echo date_format($date,"Y-m-d");
?>
亲自试一试 »

定义和用法

date_isodate_set() 函数根据 ISO 8601 标准,使用周和日偏移量(而不是使用特定日期)设置日期。


语法

date_isodate_set( object, year, week, day)

参数值

Parameter Description
object Required. Specifies a DateTime object returned by date_create()
year Required. Specifies the year of the date
week Required. Specifies the week of the date
day Optional. Specifies the offset from the first day of the week. Default is 1

技术细节

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

❮ PHP 日期/时间参考