How do I add days to a timestamp? If my timestamp is 01-JAN-2011 11-09-05
and I add 2 days, I want 03-JAN-2011 11-09-05
.
echo time() + (24*60*60);
1 Day: 86,400 seconds.
Just do: $date = strtotime("+7 day"); echo date('M d, Y', $date);
Adding days to current Date const current = new Date(); Now, we can add the required number of days to a current date using the combination of setDate() and getDate() methods.
select '01-jan-2011 11-09-05' + interval '2' day
A completely Oracle-centric solution is to simply add 2 to the timestamp value as the default interval is days for Oracle dates/timestamps:
SELECT TO_TIMESTAMP('01-jan-2011 11-09-05','DD-Mon-YYYY HH24-MI-SS') + 2
FROM dual;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With