<?php $date = new \DateTime('+8 days'); $date = shiftDate($date); function shiftDate($date){ if (in_array((int)$date->format('N'), [6,7])){ $date->add(new \DateInterval('P1D')); $date = shiftDate($date); } return $date; } var_dump($date);
You have javascript disabled. You will not be able to edit any code.