Answers for "add 1 month in new datetime date php oop"

PHP
1

php date today plus 1 month

$future_timestamp = strtotime("+1 month");
$data = date('Y-m-d', $future_timestamp);
Posted by: Guest on July-23-2020
0

in date function + 1 month and - 1 day in php

<?php
$months = n; // Here n = …..-2,-1,0,1,2, …..(months to add or subtract)
$years = n;  // Here n = …..-2,-1,0,1,2, …..(years to add or subtract)
echo date('Y-m-28', mktime(0, 0, 0, date('m')+$months, 1, date('Y') + $years));
?>
Posted by: Guest on October-13-2020

Browse Popular Code Answers by Language