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