php date today plus 1 month

Solutions on MaxInterview for php date today plus 1 month by the best coders in the world

showing results for - "php date today plus 1 month"
Amy
28 Sep 2019
1$future_timestamp = strtotime("+1 month");
2$data = date('Y-m-d', $future_timestamp);