|
DateTime::setISODatedate_isodate_setSets the ISO date DescriptionObject oriented style
public DateTime DateTime::setISODate
( int
$year
, int $week
[, int $day = 1
] )Procedural style
DateTime date_isodate_set
( DateTime
$object
, int $year
, int $week
[, int $day = 1
] )Set a date according to the ISO 8601 standard - using weeks and day offsets rather than specific dates. Parameters
Return Values
Returns the DateTime object for method chaining or Changelog
ExamplesExample #1 DateTime::setISODate example Object oriented style
<?php Procedural style
<?php The above examples will output: 2008-01-07 2008-01-13 Example #2 Values exceeding ranges are added to their parent values
<?php The above example will output: 2008-01-13 2008-01-14 2009-01-04 Example #3 Finding the month a week is in
<?php The above examples will output: 3 See Also
|