Guest User

Untitled

a guest
Oct 17th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <?php
  2. $start = new DateTime('-7 days', new DateTimeZone('UTC'));
  3. $period = new DatePeriod($start, new DateInterval('P1D'), 7);
  4. foreach ($period as $date) {
  5. echo $date->format('D d-m-Y').'<br>';
  6. }
Add Comment
Please, Sign In to add comment