Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

date_isodate_set

Description

The date_isodate_set of Date / Time for PHP sets the ISO date.

Syntax

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

Parameters

object

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.

Return

Returns the DateTime object for method chaining or FALSE on failure.

Examples

1 · object year week

<?

$object = date_create();
$year = 2001;
$week = 2;

date_isodate_set($object, $year, $week);

echo date_format($object, "Y-m-d");

?>
2001-01-08

2 · day

<?

$object = date_create();
$year = 2001;
$week = 2;
$day = 3;

date_isodate_set($object, $year, $week, $day);

echo date_format($object, "Y-m-d");

?>
2001-01-10

3 · Return

<?

$object = date_create();
$year = 2001;
$week = 2;
$day = 3;

$return = date_isodate_set($object, $year, $week, $day);

var_export($return);

?>
\DateTime::__set_state(array(
   'date' => '2001-01-10 05:57:16.650848',
   'timezone_type' => 3,
   'timezone' => 'UTC',
))
HomeMenu