For example the:
You can leverage this function of php. strtotime
$currentYear = date("Y");
MLK Day -
echo date('Y-m-d', strtotime("third monday of january $currentYear"));
Presidents Day -
echo date('Y-m-d', strtotime("third monday/OD February $currentYear"));
Easter -
echo date('Y-m-d', strtotime("last sunday of march $currentYear"));
Memorial Day -
echo date('Y-m-d', strtotime("last monday of may $currentYear"));