Sets the ISO date

DateTimeImmutable::setISODate

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

DateTimeImmutable::setISODateSets the ISO date

說明

public DateTimeImmutable::setISODate(int $year, int $week, int $dayOfWeek = 1): DateTimeImmutable

Returns a new DateTimeImmutable object with the date set according to the ISO 8601 standard - using weeks and day offsets rather than specific dates.

參數

object

僅過程化風格:由 date_create() 返回的 DateTime 型別的對象。此函式會修改這個對象。

year

Year of the date.

week

Week of the date.

dayOfWeek

Offset from the first day of the week.

返回值

返回新修改的 DateTimeImmutable 對像 或者在失敗時返回 false.

範例

示例 #1 DateTimeImmutable::setISODate() example

物件導向風格

<?php
$date 
= new DateTimeImmutable();

$date->setISODate(20082);
echo 
$date->format('Y-m-d') . "\n";

$date->setISODate(200827);
echo 
$date->format('Y-m-d') . "\n";
?>

過程化風格

<?php
$date 
date_create();

date_isodate_set($date20082);
echo 
date_format($date'Y-m-d') . "\n";

date_isodate_set($date200827);
echo 
date_format($date'Y-m-d') . "\n";
?>

以上例程會輸出:

2008-01-07
2008-01-13

示例 #2 Values exceeding ranges are added to their parent values

<?php
$date 
= new DateTimeImmutable();

$newDate $date->setISODate(200827);
echo 
$newDate->format('Y-m-d') . "\n";

$newDate $date->setISODate(200828);
echo 
$newDate->format('Y-m-d') . "\n";

$newDate $date->setISODate(2008537);
echo 
$newDate->format('Y-m-d') . "\n";
?>

以上例程會輸出:

2008-01-13
2008-01-14
2009-01-04

示例 #3 Finding the month a week is in

<?php
$date 
= new DateTimeImmutable();
$newDate $date->setISODate(200814);
echo 
$newDate->format('n');
?>

以上例程會輸出:

3

參見

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *