将 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 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!