Unix and Linux Discussions Tagged with date |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
3 |
11,713 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
7,887 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,158 |
UNIX for Beginners Questions & Answers |
|
|
|
13 |
20,430 |
Shell Programming and Scripting |
|
|
|
2 |
11,133 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,637 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
8,042 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
6,802 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
11,979 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,667 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,290 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,172 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
4,145 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,073 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,120 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
5,461 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,586 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,406 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,104 |
UNIX for Beginners Questions & Answers |
|
|
|
20 |
10,468 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
6,989 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
5,170 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
25,942 |
Shell Programming and Scripting |
|
|
|
0 |
13,689 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
18,289 |
Linux |
|
|
|
2 |
3,546 |
Shell Programming and Scripting |
|
|
|
3 |
8,619 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,164 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,418 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,617 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,973 |
UNIX for Beginners Questions & Answers |
|
|
|
13 |
8,006 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
3,796 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
8,044 |
Ubuntu |
|
|
|
1 |
14,938 |
Answers to Frequently Asked Questions |
|
|
|
2 |
6,208 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
12,754 |
Shell Programming and Scripting |
|
|
|
3 |
17,618 |
Shell Programming and Scripting |
|
|
|
20 |
21,494 |
HP-UX |
|
|
|
7 |
18,578 |
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)