<?php $text = "Machine Shop Supervisor"; $skills = 'Shop Supervisor'; preg_match_all("~^$skills$~i", $text, $matchWords); print_r($matchWords); $text = "Machine Shop Supervisor"; $skills = 'Machine Shop Supervisor'; preg_match_all("~^$skills$~i", $text, $matchWords); print_r($matchWords);
You have javascript disabled. You will not be able to edit any code.