例
設置ISO日至5日當週,2013年:
<?php
$date=date_create();
date_isodate_set($date,2013,5);
echo
date_format($date,"Y-m-d");
?>
運行示例» 定義和用法
所述date_isodate_set()函數根據ISO 8601標準規定的日期,使用週和天偏移(instead of using a specific date) 。
句法
date_isodate_set( object,year,week,day);
參數 | 描述 |
---|---|
object | 需要。 指定DateTime對象通過返回date_create() |
year | 需要。 指定日期的年份 |
week | 需要。 指定日期的一周 |
day | 可選的。 指定從一周的第一天的偏移量。 默認值為1 |
技術細節
返回值: | 如果成功則返回一個DateTime對象。 FALSE失敗 |
---|---|
PHP版本: | 5.2+ |
更新日誌: | PHP 5.3.0:改變返回值從NULL為DateTime |
<PHP日期/時間參考