<?php $days = ['Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday']; $inputDays = ['Sunday','Friday']; $missingDays = array_diff($days,$inputDays); print_r($missingDays);
You have javascript disabled. You will not be able to edit any code.