How to include the end date in a DatePeriod?

Peter

I am trying to get a Date range for all workdays this week. I have written the following code to do so.

Code

$begin = new DateTime('monday this week'); 2016-07-04
$end = clone $begin;
$end->modify('next friday'); // 2016-07-08

$interval = new DateInterval('P1D');
$daterange = new DatePeriod($begin, $interval, $end);



foreach($daterange as $date) {
    echo $date->format('Y-m-d')."<br />";
}

Output

  • 2016-07-04
  • 2016-07-05
  • 2016-07-06
  • 2016-07-07

In the output friday is missing. I can fix this by doing $end->modify('next saturday') but I was wondering why the last day of a DatePeriod is not included in the range.

RiggsFolly

The iterator seems to check the time as well as the date, it excludes the end element if the time in the endDate is less that or equal to the time in the start date.

So ensure the time of the end date is at least a second greater that that of the start date.

// this will default to a time of 00:00:00
$begin = new DateTime('monday this week'); //2016-07-04

$end = clone $begin;

// this will default to a time of 00:00:00    
$end->modify('next friday'); // 2016-07-08

$end->setTime(0,0,1);     // new line

$interval = new DateInterval('P1D');
$daterange = new DatePeriod($begin, $interval, $end);

foreach($daterange as $date) {
    echo $date->format('Y-m-d')."<br />";
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to include the end date in a DatePeriod?

From Dev

fullCalendar - include end date

From Dev

How to include the name of the file at the end of the string

From Dev

How to get start and end date

From Dev

How to include date/timestamp with each new entry?

From Dev

How to rename photo filename to include the date?

From Dev

How to include date/timestamp with each new entry?

From Dev

How to make ts include year in prepended date?

From Dev

How to modify this code to include date in a new column?

From Dev

How to include start date in Joda Time daysBetween?

From Dev

How to show date between start date and end date in ms access

From Dev

jQuery datepicker: how to set start and end date

From Dev

How to calculate season base on startdate and end date

From Dev

How to get start and end date with momentjs?

From Dev

How to include token and other session information to send to front end?

From Dev

How to serialize a UTC datetime in WCF to include the "Z" at the end?

From Dev

how to get start date and end date of sequence days in table?

From Dev

How to count records with start date end date interval in R?

From Dev

How to create a task with start date and end date in tfs?

From Dev

Mysql - how to calculate end date by using start date and duration

From Dev

how to disable end date range in Twitter bootstrap date picker?

From Dev

crossfilter: how to use crossfilters for start date and end date columns simultaneously

From Dev

How to get the Date time month start and End Date?

From Dev

How do I get the start date and end date of the current week?

From Dev

How to get Running Total based on start date and end date in MYSQL

From Dev

How to pass Before Date and End Date to Dynamic SQL Query

From Dev

Google BigQuery :How to Generate Date Array by End of Month date

From Dev

How to get Start Date and End Date in Last month using Javascripts?

From Dev

How to create a task with start date and end date in tfs?

Related Related

  1. 1

    How to include the end date in a DatePeriod?

  2. 2

    fullCalendar - include end date

  3. 3

    How to include the name of the file at the end of the string

  4. 4

    How to get start and end date

  5. 5

    How to include date/timestamp with each new entry?

  6. 6

    How to rename photo filename to include the date?

  7. 7

    How to include date/timestamp with each new entry?

  8. 8

    How to make ts include year in prepended date?

  9. 9

    How to modify this code to include date in a new column?

  10. 10

    How to include start date in Joda Time daysBetween?

  11. 11

    How to show date between start date and end date in ms access

  12. 12

    jQuery datepicker: how to set start and end date

  13. 13

    How to calculate season base on startdate and end date

  14. 14

    How to get start and end date with momentjs?

  15. 15

    How to include token and other session information to send to front end?

  16. 16

    How to serialize a UTC datetime in WCF to include the "Z" at the end?

  17. 17

    how to get start date and end date of sequence days in table?

  18. 18

    How to count records with start date end date interval in R?

  19. 19

    How to create a task with start date and end date in tfs?

  20. 20

    Mysql - how to calculate end date by using start date and duration

  21. 21

    how to disable end date range in Twitter bootstrap date picker?

  22. 22

    crossfilter: how to use crossfilters for start date and end date columns simultaneously

  23. 23

    How to get the Date time month start and End Date?

  24. 24

    How do I get the start date and end date of the current week?

  25. 25

    How to get Running Total based on start date and end date in MYSQL

  26. 26

    How to pass Before Date and End Date to Dynamic SQL Query

  27. 27

    Google BigQuery :How to Generate Date Array by End of Month date

  28. 28

    How to get Start Date and End Date in Last month using Javascripts?

  29. 29

    How to create a task with start date and end date in tfs?

HotTag

Archive