Элементы массива preg_match в строке?
Допустим, у меня есть множество плохих слов: $badwords = array("one", "two", "three"); И случайная строка: $string = "some variable text"; Как создать этот цикл: if (one or more items from the $badwords array is found in $string) echo "sorry bad word found"; else echo "string contains no bad words"; Пример: если $string = "one fine […]