<?php function retirement_date(){ $reteire_period = "+ years"; $start_date = new DateTime('2026-05-09'); $custom_date = $start_date->modify("$reteire_period"); $custom_date = $custom_date->format("d-m-Y"); return $custom_date; }?>