fork download
  1. <?php
  2.  
  3. $tagOptArray = array("Corporate", "Exporters", "Buyers", "News", "Apparel","Aquarium Fish", "Boat and Ship Building");
  4. $subBlockTag = "building boat";
  5. $tag = preg_grep('/^(?=.*' . implode(")(?=.*", preg_split("~\s+~", trim($subBlockTag))) . ')/is', $tagOptArray);
  6. print_r($tag);
Success #stdin #stdout 0.02s 52488KB
stdin
Standard input is empty
stdout
Array
(
    [6] => Boat and Ship Building
)