How to Add Years to Date in PHP

In this tutorial i will show you how to add years to date in PHP. Many project need this type speciality suppose, user subscribe account in 2 years need to two years add in current date. You may also like How to add one year in current date using php and How to Add Months to Date in PHP.

The following source code will add 2 years to current date.

<?php
    echo date('Y-m-d', strtotime(' + 2 year')); 
?>

The following source code will add 2 years to date.

<?php
    $date = "2018-05-19";
    echo date('Y-m-d', strtotime($date. ' + 2 year'));
?>

And if you like this tutorials please share it with your friends via Email or Social Media.

Leave a Reply

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