Söylediğiniz gibi, şu an için zaman damgasına 24 saat eklemek istiyorsanız, şunları yapabilirsiniz:
<?php echo strtotime('+1 day'); ?>
Yukarıdaki kod, mevcut zaman damganıza 1 gün veya 24 saat ekleyecektir.
yerine +1 dayalabilir size ne istersen gibi, php manuel diyor strtotime herhangi İngiliz bir Unix zaman damgası içine tarih saat açıklamasına metinsel hakkında Ayrıştırma edebilirsiniz .
Kılavuzdan örnekler aşağıdaki gibidir:
<?php
echo strtotime("now"), "\n";
echo strtotime("10 September 2000"), "\n";
echo strtotime("+1 day"), "\n";
echo strtotime("+1 week"), "\n";
echo strtotime("+1 week 2 days 4 hours 2 seconds"), "\n";
echo strtotime("next Thursday"), "\n";
echo strtotime("last Monday"), "\n";
?>