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

My name is Devendra Dode. I am a full-stack developer, entrepreneur, and owner of Tutsmake.com. I like writing tutorials and tips that can help other developers. I share tutorials of 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 from a starting stage. As well as demo example.

Leave a Reply

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