How to remove specific words from array in PHP

2 Answers

0 votes
$remove_words = array("of", "the");

$array = array("the", "president", "of", "the", "united", "states", "of", "america");

foreach ($array as $key=>$value) {
   if (in_array($value, $remove_words)) {
      unset($array[$key]);
   }
}

print_r($array);
  
   
/*
run:
    
Array ( [1] => president [4] => united [5] => states [7] => america )
    
*/

 



answered Nov 17, 2017 by avibootz
0 votes
$remove_words = array("of", "the");

$array = array("the", "president", "of", "the", "united", "states", "of", "america");

$replace = array_fill_keys($remove_words, '');

$array = array_filter(str_replace(array_keys($replace),$replace, $array));
  
print_r($array);    
   
/*
run:
    
Array ( [1] => president [4] => united [5] => states [7] => america )
    
*/

 



answered Nov 17, 2017 by avibootz

Related questions

1 answer 186 views
1 answer 134 views
134 views asked Oct 13, 2020 by avibootz
2 answers 214 views
1 answer 130 views
1 answer 137 views
...