Created
November 28, 2017 11:01
-
-
Save qwersk/a64205b819127106278104a13108625d to your computer and use it in GitHub Desktop.
Get date range between dates #PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function date_range($first, $last, $step = '+1 day', $output_format = 'Y-m-d' ) { | |
$dates = array(); | |
$current = strtotime($first); | |
$last = strtotime($last); | |
while( $current <= $last ) { | |
$dates[] = date($output_format, $current); | |
$current = strtotime($step, $current); | |
} | |
return $dates; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment