Adicione 5 dias à data atual no PHP

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

  echo $result;
?>
Gowri Shankar Balasubramaniam