Data PHP modyfikuj plus 1 dzień

<?php
$date = new DateTime('2006-12-12');
$date->modify('+1 day');
echo $date->format('Y-m-d');
?>
Matteoweb