date_default_timezone_set('Europe/Istanbul');
$threeDaysLater = date("d.m.y H:i:s",strtotime('+3 days'));
2-) Bugünün üzerine saat hesabı yapmadan ve günü sonlandıracak şekilde 3 gün nasıl eklenebilir?
date_default_timezone_set('Europe/Istanbul');
$threeDaysLaterMidnight = date("d.m.y H:i:s",strtotime('+4 days midnight'));
Kolay gelsin.