Skip to content

Instantly share code, notes, and snippets.

Created April 8, 2013 22:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/748549b5eb6acb996298 to your computer and use it in GitHub Desktop.
Save anonymous/748549b5eb6acb996298 to your computer and use it in GitHub Desktop.
$date_ranges = array(
'Today' => array(strtotime('midnight'), strtotime('midnight tomorrow')),
'Yesterday' => array(strtotime('midnight yesterday'), strtotime('midnight')),
'Day Before Yesterday' => array(),
'This Week' => array(strtotime('midnight first day this week'), strtotime('midnight first day next week')),
'This Month' => array(strtotime('midnight first day this month'), strtotime('midnight first day next month')),
'All Time' => array(0, 0),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment