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 7791529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T21:54:53+00:00 2026-06-01T21:54:53+00:00

I have the following code $date = new DateTime($json->date); $hour = $date->format( ‘H’ );

  • 0

I have the following code

$date = new DateTime($json->date);
$hour =  $date->format( 'H' );  
$range = range($hour, 23, 3); // get the range for the data to be provided;
        foreach($json->hourly as $hourlyData){

            if(in_array($hourlyData->hour, $range)){

                print_r($hourlyData->hour);echo '<br />'; 
            }
        }

the code above looks at current time. If time is 4, then it will add an echo for every 3 hours as the range would be (4,23, 3). This all is good. However, this above is only for current day. But for next day, I want the range to be reset and instead of from 4, it will be from 1 till 23. So the range will reset to (1,23,3) and so on.

  • 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-06-01T21:54:54+00:00Added an answer on June 1, 2026 at 9:54 pm

    what you need to use is DateInterval not range ….

    Try

    $date = new DateTime("2012-4-12 4:20am");
    $dv = new DateInterval('PT3H');
    $totalInterval = 20 ; 
    echo "<pre>" ;
    echo $date->format('H') , PHP_EOL;
    for($i = 0; $i < $totalInterval; $i++)
    {
        $date->add($dv);
        echo $date->format('H') , PHP_EOL;
    
    }
    

    Output

    04
    07
    10
    13
    16
    19
    22
    01
    04
    07
    10
    13
    16
    19
    22
    01
    04
    07
    10
    13
    16
    

    I hope this helps

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

Sidebar

Related Questions

i have the following code def get(self): date = datetime.date.today() loc_query = Location.all() last_cursor
Say I have the following code: struct date { int day; int month; int
I have the following code: DECLARE @testDate date --SET @testDate=dateadd(wk, 5830, 0) SET @testDate='2011-09-26
I have following code class User attr_accessor :name end u = User.new u.name =
I have the following C# code: public JsonResult Graph() { var result = new
I have the following code: public IDictionary<string, int> GetCountByDate(DateTime fromDate, DateTime toDate) { var
Hi I have the following code which returns me the right data but it
I have the following C# code that creates a DateTime , enters it into
I have the following code, and I am trying to pass datetime as a
I have the following code to insert some data from a GridView to a

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.