PASSWORD RESET

Your destination for complete Tech news

PHP

How to get the next month from date in PHP?

392 0
< 1 min read

In PHP, you can get the next month from a date using the date() function with the “m” and “Y” format characters. Here’s an example:

$dateString = '2023-02-25'; // The date to get the next month from, in YYYY-MM-DD format
$nextMonth = date('Y-m', strtotime('+1 month', strtotime($dateString))); // Get the next month from the date

echo $nextMonth; // Output: 2023-03

In this example, we first convert the date string to a Unix timestamp using the strtotime() function. We then use the date() function with the “Y-m” format characters to output the next month in YYYY-MM format.

To get the next month, we pass the date string to the strtotime() function along with the “+1 month” argument, which adds one month to the date. We then pass the resulting timestamp to the date() function to format it in the desired format.

If you need to output the next month in a different format, you can use other format characters. The full list of format characters is available in the PHP documentation for the date() function.

Leave A Reply

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.