Skip to content

Instantly share code, notes, and snippets.

@abelcallejo
Last active July 27, 2020 20:47
Show Gist options
  • Save abelcallejo/56fbbf4beca54bd2f9773e8a0c556aa7 to your computer and use it in GitHub Desktop.
Save abelcallejo/56fbbf4beca54bd2f9773e8a0c556aa7 to your computer and use it in GitHub Desktop.
15-minute interval aggregation

15-minute interval aggregation

PHP

$midpoint = floor(($minutes+7)/15)*15;

JavaScript

midpoint = Math.floor((minutes+7)/15)*15;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment