Dodaj 7 dni do bieżącej daty w PHP

<?php
  $result = date('d.m.Y', strtotime('+7 day', time()));

  echo $result;
?>
Gowri Shankar Balasubramaniam