PHP date add 5 year to current date

Try with:

$end = date('Y-m-d', strtotime('+5 years'));

Leave a Comment