How to Get Next, Previous Day, Month, Year From Date In PHP

How to Get Next, Previous Day, Month, Year From Date In PHP

How to get next and previous day, month and year from given date in PHP. In this tutorial, you will learn you how to get next and previous day, month and year from given date in php.

This tutorial will guide you with examples of how to get next and previous day, month and year from given date in php.

How to Get Next, Previous Day, Month And Year From Date In PHP

Use following examples for get next, previous day, month, year from given data in php; is as follows:

  • How to Get Previous Day From Date In Php?
  • How to Get Next Day From Date In Php?
  • How to Get Previous Month From Date In Php?
  • How to Get Next Month From Date In Php?
  • How to Get Previous Year From Date In Php?
  • How to Get Next Year From Date In Php?

How to Get Previous Day From Date In Php?

You can see the following example of how to get previous day from date in php:

<?php
    $date = "2021-01-11";
    $newdate = date("Y-m-d",strtotime ( '-1 day' , strtotime ( $date ) )) ;
    echo $newdate;
?>

Output:

2021-01-10

How to Get Next Day From Date In Php?

You can see the following example of how to get next day from date in php:

<?php
    $date = "2021-01-11";
    $newdate = date("Y-m-d",strtotime ( '+1 day' , strtotime ( $date ) )) ;
    echo $newdate;
?>

output:

2021-01-12

How to Get Previous Month From Date In Php?

This example of how to get previous month from date in php:

<?php
    $date = "2021-01-11";
    $newdate = date("Y-m-d", strtotime ( '-1 month' , strtotime ( $date ) )) ;
    echo $newdate;
?>

Output:

2020-12-11

How to Get Next Month From Date In Php?

You can see the following example of how to get next month from date in php:

<?php
    $date = "2021-01-11";
    $newdate = date("Y-m-d", strtotime ( '+1 month' , strtotime ( $date ) )) ;
    echo $newdate;
?>

Output:

2021-02-11

How to Get Previous Year From Date In Php?

For find previous year from date in PHP, So, You can see the following example:

<?php
    $date = "2021-01-11";
    $newdate = date("Y-m-d",strtotime ( '-1 year' , strtotime ( $date ) )) ;
    echo $newdate;
?>

Output:

2020-01-11

How to Get Next Year From Date In Php?

For find next year from date in PHP, So, You can see the following example:

<?php
    $date = "2021-01-11";
    $newdate = date("Y-m-d",strtotime ( '+1 year' , strtotime ( $date ) )) ;
    echo $newdate;
?>

Output:

2022-01-11

Recommended PHP Tutorials

AuthorAdmin

Greetings, I'm Devendra Dode, a full-stack developer, entrepreneur, and the proud owner of Tutsmake.com. My passion lies in crafting informative tutorials and offering valuable tips to assist fellow developers on their coding journey. Within my content, I cover a spectrum of technologies, including PHP, Python, JavaScript, jQuery, Laravel, Livewire, CodeIgniter, Node.js, Express.js, Vue.js, Angular.js, React.js, MySQL, MongoDB, REST APIs, Windows, XAMPP, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL, and Bootstrap. Whether you're starting out or looking for advanced examples, I provide step-by-step guides and practical demonstrations to make your learning experience seamless. Let's explore the diverse realms of coding together.

Leave a Reply

Your email address will not be published. Required fields are marked *