Skip to content

Instantly share code, notes, and snippets.

@qwersk
Created November 28, 2017 11:01
Show Gist options
  • Save qwersk/a64205b819127106278104a13108625d to your computer and use it in GitHub Desktop.
Save qwersk/a64205b819127106278104a13108625d to your computer and use it in GitHub Desktop.
Get date range between dates #PHP
<?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