11
227
$exclusionList = array(); array_push($exclusionList,'menu-item-has-children'); $textString = "love food education health"; $exclusionList = array_merge($exclusionList,explode(' ', $textString)); return is_array($var) ? array_intersect( $var, $exclusionList) : '';
$str = "love food education health"; echo implode(', ', explode(' ', $str));