Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1015195
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T10:21:53+00:00 2026-05-16T10:21:53+00:00

I have two dates – a start date and an end date. I need

  • 0

I have two dates – a start date and an end date. I need to return an array of months (‘Y-m’ format) which includes every month between start and end date, as well as the months that those dates are in. I’ve tried:

$start = strtotime('2010-08-20');
$end = strtotime('2010-09-15');
$month = $start;
while($month <= $end) {
  $months[] = date('Y-m', $month);
  $month = strtotime("+1 month", $month);
}

The problem is that, in the above example, it only adds ‘2010-08’ to the array, and not ‘2010-09’. I feel like the solution should be obvious, but I just can’t see it.

Note that this should take into account situations like:

$start = strtotime('2010-08-20');
$end = strtotime('2010-08-21');
// should return '2010-08'

$start = strtotime('2010-08-20');
$end = strtotime('2010-09-01');
// should return '2010-08,2010-09'

$start = strtotime('2010-08-20');
$end = strtotime('2010-10-21');
// should return '2010-08,2010-09,2010-10'

Also, the version of PHP on my host is 5.2.6 so it has to work within those confines.


The solution I used was based on the answer below re. setting $start to the first day of the month. However I couldn’t get it working with just the strtotime() and instead had to use another function I found on the web.

function firstDayOfMonth($uts=null) 
{ 
    $today = is_null($uts) ? getDate() : getDate($uts); 
    $first_day = getdate(mktime(0,0,0,$today['mon'],1,$today['year'])); 
    return $first_day[0]; 
}

$start = strtotime('2010-08-20');
$end = strtotime('2010-09-15');
$month = firstDayOfMonth($start);
while($month <= $end) {
  $months[] = date('Y-m', $month);
  $month = strtotime("+1 month", $month);
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T10:21:53+00:00Added an answer on May 16, 2026 at 10:21 am

    The problem is that $start day is bigger than end day, so after you add month to start its bigger than end, solution is to use first day of the month, like 2010-08-01 so after you add +1 month you will get at least equal $end 😉

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two dates in the format below: Start Date = 30-10-2009 End Date
I have two dates of the form: Start Date: 2007-03-24 End Date: 2009-06-26 Now
I have two dates of the form: Start Date: 2010-12-24 End Date: 2011-10-06 (today)
I have two dates - a start and an end. I'd like to format
I have two dates: how do I compare which one is greater date in
I have two input dates taking from Date Picker control. I have selected start
I have two dates begin <- as.Date(2007-05-20) end <- as.Date(2010-06-13) How can I count
I have two dates in format(MM/dd/yyyy hh:mm:ss:SS). For the both dates I have converted
i have two dates ValidFrom : 20-04-2010 validTo : 02-05-2010 i need to know
I have two dates namely the filecreation date and the system date both in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.