DateTime::setISODate
date_isodate_set
(PHP 5 >= 5.2.0)
DateTime::setISODate -- date_isodate_set — Sets the ISO date
설명
객체 기반 형식
절차식 형식
Set a date according to the ISO 8601 standard - using weeks and day offsets rather than specific dates.
인수
- object
-
Procedural style only: A DateTime object returned by date_create(). The function modifies this object.
- year
-
Year of the date.
- week
-
Week of the date.
- day
-
Offset from the first day of the week.
반환값
Returns the DateTime object for method chaining or FALSE on failure.
변경점
| 버전 | 설명 |
|---|---|
| 5.3.0 | 반환값을 NULL에서 DateTime으로 변경. |
예제
Example #1 DateTime::setISODate() example
객체 기반 형식
<?php
$date = new DateTime();
$date->setISODate(2008, 2);
echo $date->format('Y-m-d') . "\n";
$date->setISODate(2008, 2, 7);
echo $date->format('Y-m-d') . "\n";
?>
절차식 형식
<?php
$date = date_create();
date_isodate_set($date, 2008, 2);
echo date_format($date, 'Y-m-d') . "\n";
date_isodate_set($date, 2008, 2, 7);
echo date_format($date, 'Y-m-d') . "\n";
?>
위 예제들의 출력:
2008-01-07 2008-01-13
Example #2 Values exceeding ranges are added to their parent values
<?php
$date = new DateTime();
$date->setISODate(2008, 2, 7);
echo $date->format('Y-m-d') . "\n";
$date->setISODate(2008, 2, 8);
echo $date->format('Y-m-d') . "\n";
$date->setISODate(2008, 53, 7);
echo $date->format('Y-m-d') . "\n";
?>
위 예제의 출력:
2008-01-13 2008-01-14 2009-01-04
Example #3 Finding the month a week is in
<?php
$date = new DateTime();
$date->setISODate(2008, 14);
echo $date->format('n');
?>
위 예제들의 출력:
3
참고
- DateTime::setDate() - Sets the date
- DateTime::setTime() - Sets the time
There are no user contributed notes for this page.
