Agregue 2 días a la fecha actual en PHP
<?php
$result = date('d.m.Y', strtotime('+2 day', time()));
echo $result;
?>
Gowri Shankar Balasubramaniam
<?php
$result = date('d.m.Y', strtotime('+2 day', time()));
echo $result;
?>