$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 )
*/