Skip to content

Instantly share code, notes, and snippets.

@andrefrd
Created March 26, 2015 21:07
Show Gist options
  • Save andrefrd/ba9ba6c889b55f14f0c5 to your computer and use it in GitHub Desktop.
Save andrefrd/ba9ba6c889b55f14f0c5 to your computer and use it in GitHub Desktop.
Get last 7 Days PHP
<?php
$today = date("Y-m-d");
for ($i=0; $i <= 7; $i++){
$strData = date('Y-m-d', strtotime( '-'. $i .' days', strtotime($today)));
echo $strData."<br>";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment