<?php $courseAreas = array('ayrshire', 'fife', 'cheshire', 'lanarkshire'); $includesAyrshireAndFife = (count(array_intersect(array('ayrshire', 'fife'), $courseAreas)) >= 2) ? true : false; var_dump($includesAyrshireAndFife); $courseAreas = array('ayrshire', 'sterlingshire', 'cheshire', 'lanarkshire'); $includesAyrshireAndFife = (count(array_intersect(array('ayrshire', 'fife'), $courseAreas)) >= 2) ? true : false; var_dump($includesAyrshireAndFife);
You have javascript disabled. You will not be able to edit any code.