December 20, 2015 HomePHP QuestionsHow to Add 1 Year in Date in PHP How to Add 1 Year in Date in PHP By Krishnaa PHP Questions 0 Comments Sample code is given below, where we are adding 1 year to the current date. <?php $today = date("Y-m-d"); $oneyear = date('Y-m-d', strtotime($today. ' + 1 year')); echo $oneyear; ?> You May Also Like: How to Get Current Year in C#/CSharp How to Check if Date is Less Than Current Date in Javascript How to Display Current Date and Time in Javascript How to Find Yesterday’s Date in Javascript How to Validate Date in Javascript