$keywordsから$badwordsの要素を削除する簡単な方法が必要です。
私が持っているもの(例として)
$keywords = array('sebastian','nous','helene','lol'); //it could be anything in fact
$badwords = array('nous', 'lol', 'ene', 'seba'); //array full of stop words that I won't write here
$filtered_keywords = array_filter(preg_replace($badwords,'',$keywords), 'strlen');
print_r($filtered_keywords);
私が期待したこと
Array ( [0] => samaha [1] => helene )
私が得たもの
Sweet nothing :)
使用しようとしましstr_ireplace
たが、配列内の文字列内で置き換えられていたため、うまくいきませんでした。