Ajouter 7 jours à la date en cours dans PHP

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

  echo $result;
?>
Gowri Shankar Balasubramaniam