Dodaj 2 dni do bieżącej daty w PHP

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

  echo $result;
?>
Gowri Shankar Balasubramaniam