DateTime::setISODate

date_isodate_set

(PHP 5 >= 5.2.0, PHP 7)

DateTime::setISODate -- date_isodate_setSets the ISO date

Opis

Styl obiektowy

public DateTime::setISODate ( int $year , int $week [, int $day = 1 ] ) : DateTime

Styl proceduralny

date_isodate_set ( DateTime $object , int $year , int $week [, int $day = 1 ] ) : DateTime

Set a date according to the ISO 8601 standard - using weeks and day offsets rather than specific dates.

Parametry

object

Tylko styl proceduralny: Obiekt DateTime zwracany przez date_create(). Funkcja modyfikuje ten obiekt.

year

Year of the date.

week

Week of the date.

day

Offset from the first day of the week.

Zwracane wartości

Zwraca zmodyfikowany obiekt DateTime lub FALSE w przypadku niepowodzenia.

Rejestr zmian

Wersja Opis
5.3.0Zmieniono zwracaną wartość w przypadku powodzenia z NULL na DateTime.

Przykłady

Przykład #1 DateTime::setISODate() example

Styl obiektowy

<?php
$date 
= new DateTime();

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

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

Styl proceduralny

<?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";
?>

Powyższe przykłady wyświetlą:

2008-01-07
2008-01-13

Przykład #2 Values exceeding ranges are added to their parent values

<?php
$date 
= new DateTime();

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

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

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

Powyższy przykład wyświetli:

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

Przykład #3 Finding the month a week is in

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

Powyższe przykłady wyświetlą:

3

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top