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

  • Home
  • SEARCH
  • 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 5986901
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T22:44:18+00:00 2026-05-22T22:44:18+00:00

So I have one date as a string: 2011/06/01 I need to get the

  • 0

So I have one date as a string:

2011/06/01

I need to get the 5 DateTime objects from it that correspond to the five weekdays (Monday to Friday) in that week, e.g. for the date above I need 2011-05-30 to 2011-06-03.

How to do that? I know I can do:

$dateTime = new DateTime('2011/06/01');

But I am kinda stuck there 🙂 I know, embarrassing.

  • 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-22T22:44:19+00:00Added an answer on May 22, 2026 at 10:44 pm

    Can use DatePeriod:

    $firstMondayThisWeek= new DateTime('2011/06/01');
    $firstMondayThisWeek->modify('tomorrow');
    $firstMondayThisWeek->modify('last Monday');
    
    $nextFiveWeekDays = new DatePeriod(
        $firstMondayThisWeek,
        DateInterval::createFromDateString('+1 weekdays'),
        4
    );
    
    print_r(iterator_to_array($nextFiveWeekDays));
    

    Note that DatePeriod is an Iterator, so unless you are really fixed on having the dates in an array, you can just as well go with the DatePeriod as container.

    The above will give something like (demo)

     Array
    (
    [0] => DateTime Object
        (
            [date] => 2011-05-30 00:00:00
            [timezone_type] => 3
            [timezone] => Europe/Berlin
        )
    
    [1] => DateTime Object
        (
            [date] => 2011-05-31 00:00:00
            [timezone_type] => 3
            [timezone] => Europe/Berlin
        )
    
    [2] => DateTime Object
        (
            [date] => 2011-06-01 00:00:00
            [timezone_type] => 3
            [timezone] => Europe/Berlin
        )
    
    [3] => DateTime Object
        (
            [date] => 2011-06-02 00:00:00
            [timezone_type] => 3
            [timezone] => Europe/Berlin
        )
    
    [4] => DateTime Object
        (
            [date] => 2011-06-03 00:00:00
            [timezone_type] => 3
            [timezone] => Europe/Berlin
        )
    )
    

    One pre-5.3 solution to do that would be

    $firstMondayInWeek = strtotime('last Monday', strtotime('2011/06/01 +1 day'));
    $nextFiveWeekDays = array();
    for ($days = 1; $days <= 5; $days++) {
        $nextFiveWeekDays[] = new DateTime(
            date('Y-m-d', strtotime("+$days weekdays", $firstMondayInWeek))
        );
    }
    

    though I really dont see why you would want to use DateTime objects for this when you dont/cannot also use their API in your project. As you can see, this is all the old date functions with DateTime just being the container.

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

Sidebar

Related Questions

I have one field that I need to sum lets say named items However
I have a Oracle database and one of the fields is a date range
I have two Ajax Toolkit calendar extenders. One of them is a start date
I have one thread that writes results into a Queue. In another thread (GUI),
I have one hibernate sequence, that generates all sequence-numbers in my app. When I
I have string of format 01-Jan-11 and I need to parse it to a
I have a Silverlight client that I need to call a web service. The
I have one date, let's say '2010-12-20' of a flight departure, and two times,
I have one text input and one button (see below). How can I use
I have one std::list<> container and these threads: One writer thread which adds elements

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.