I'm using the following function to get the current timestamp:
$created_timestamp = date("Y-m-d H:i:s");
But how do I get a timestamp for the last day of next month. So for example, if it is the 15th of September to get the 31st of October. Including all the hours, minutes and seconds as well?
$created_timestamp = date("Y-m-t H:i:s", strtotime("+1 month"));
t
- number of days in the given month
You can use this
date("Y-m-t H:i:s",strtotime("+1 month")) ;
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