Answers for "subtract one month from current date in php"

PHP
4

+1 month php

$time = strtotime("2010.12.11");
$final = date("Y-m-d", strtotime("+1 month", $time));
Posted by: Guest on August-07-2020
0

how to get match date and month in php

date('m',strtotime('2018-06-30' )) == date('m');
Posted by: Guest on October-04-2020

Code answers related to "subtract one month from current date in php"

Browse Popular Code Answers by Language