Unix and Linux Discussions Tagged with date |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
3 |
11,432 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
7,722 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,989 |
UNIX for Beginners Questions & Answers |
|
|
|
13 |
20,390 |
Shell Programming and Scripting |
|
|
|
2 |
10,949 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,508 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
7,888 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
6,581 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
11,789 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,535 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,159 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,994 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
4,012 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,962 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,007 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
5,323 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,457 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,271 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,977 |
UNIX for Beginners Questions & Answers |
|
|
|
20 |
10,137 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
6,885 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
5,074 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
25,882 |
Shell Programming and Scripting |
|
|
|
0 |
13,574 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
18,088 |
Linux |
|
|
|
2 |
3,534 |
Shell Programming and Scripting |
|
|
|
3 |
8,511 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,083 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,288 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,531 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,893 |
UNIX for Beginners Questions & Answers |
|
|
|
13 |
7,842 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
3,694 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
7,837 |
Ubuntu |
|
|
|
1 |
14,669 |
Answers to Frequently Asked Questions |
|
|
|
2 |
6,034 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
12,675 |
Shell Programming and Scripting |
|
|
|
3 |
17,584 |
Shell Programming and Scripting |
|
|
|
20 |
20,909 |
HP-UX |
|
|
|
7 |
18,491 |
Shell Programming and Scripting |
DATETIME.SETISODATE(3) 1 DATETIME.SETISODATE(3)
DateTime::setISODate - Sets the ISO date
Object oriented style
SYNOPSIS
public DateTime DateTime::setISODate (int $year, int $week, [int $day = 1])
DESCRIPTION
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
o $object
-Procedural style only: A DateTime object returned by date_create(3). The function modifies this object.
o $year
- Year of the date.
o $week
- Week of the date.
o $day
- Offset from the first day of the week.
RETURN VALUES
Returns the DateTime object for method chaining or FALSE on failure.
CHANGELOG
+--------+---------------------------------------------------+
|Version | |
| | |
| | Description |
| | |
+--------+---------------------------------------------------+
| 5.3.0 | |
| | |
| | Changed the return value on success from NULL to |
| | DateTime. |
| | |
+--------+---------------------------------------------------+
EXAMPLES
Example #1
DateTime.setISODate(3) example
Object oriented style
<?php
$date = new DateTime();
$date->setISODate(2008, 2);
echo $date->format('Y-m-d') . "
";
$date->setISODate(2008, 2, 7);
echo $date->format('Y-m-d') . "
";
?>
Procedural style
<?php
$date = date_create();
date_isodate_set($date, 2008, 2);
echo date_format($date, 'Y-m-d') . "
";
date_isodate_set($date, 2008, 2, 7);
echo date_format($date, 'Y-m-d') . "
";
?>
The above examples will output:
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') . "
";
$date->setISODate(2008, 2, 8);
echo $date->format('Y-m-d') . "
";
$date->setISODate(2008, 53, 7);
echo $date->format('Y-m-d') . "
";
?>
The above example will output:
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');
?>
The above examples will output:
3
SEE ALSO
DateTime.setDate(3), DateTime.setTime(3).
PHP Documentation Group DATETIME.SETISODATE(3)