DO YOU NEED A CONTENT WRITER FOR YOUR BUSINESS?

Your One-Stop Solution for All Content Needs! Click here for more!
Categories: Php

Date range in PHP

Share

Date and time values are very essential in PHP as there are different time formats, time zones, daylight saving offsets.

By carefully with the date inputs you can format output however you like.

In the below function you can get range of dates:

function date_range( $start, $end, $step = '+1 day', $format = 'Y/m/d' )
{
$dates = array();
$current = strtotime( $start );
$end = strtotime( $end );
while( $current <= $end ) {
$dates[] = date( $format, $current );
$current = strtotime( $step, $current );
}
return $dates;
}
print_r( date_range( '2010/07/26', '2010/08/05') );

Read Also:  Php PHP date() and strtotime() return wrong months on 31st

You can get the result as below:

Array
(
[0] => 2015/12/01
[1] => 2015/12/02
[2] => 2015/12/03
[3] => 2015/12/04
[4] => 2015/12/05
[5] => 2015/12/06
[6] => 2015/12/07
[7] => 2015/12/08
[8] => 2015/12/09
[9] => 2015/12/10
)

Also, you can get full week interval:

print_r( date_range( '2015/12/01', '2016/01/10', '+1 week') );

And as a result you will get this:

Array
(
[0] => 2015/12/01
[1] => 2015/12/08
[2] => 2015/12/15
[3] => 2015/12/22
[4] => 2015/12/29
[5] => 2016/01/05
)
Namaste UI

For any types of queries, you can contact us on info[at]namasteui.com.

Recent Posts

Writing Tools That Help Content Marketers Produce Cleaner Work

Content marketing has a hidden tax. It's not the writing itself, it's everything that happens…

2 weeks ago

How Data Analytics Is Actually Driving Smarter Marketing Decisions

Most marketing teams aren't failing because they lack data. They're failing because they can't act…

4 weeks ago

The Ultimate SPF Tester Guide: Boost Email Deliverability In Minutes

Email marketing continues to be one of the most effective ways for businesses to communicate,…

4 weeks ago

Sales Ops: A role that helps sales teams work as efficiently as possible

Xerox first introduced it around the mid-1970s. The need came up because the management activities…

1 month ago

Forex Investment Tips for Beginners

Investing in the forex market may look to be a dangerous game. With some worthwhile…

1 month ago

How Did The Restaurant Industry change In Post Pandemic Era?

The coronavirus outbreak has drastically changed the way we live our lives. Yes, that's absolutely…

2 months ago