PHP заменить несколько слов

Поэтому я хочу удалить все, кроме нескольких слов. Я хочу сохранить для примера «автомобиль», «круг» и «крыша». Но удалите все остальное в строку.

Скажем, строка «У меня есть машина с красным кружком на крыше». Я хочу удалить все, кроме «машины», «круга» и «крыши».

Я знаю, что есть этот:

$text = preg_replace('/\bHello\b/', 'NEW', $text);

Но я не могу понять, как это сделать несколькими словами. Я сделал это ниже, но это происходит наоборот.

$post = $_POST['text'];
$connectors = array( 'array', 'php', 'css' );

$output = implode(' ', array_diff(explode(' ', $post), $connectors));

echo $output;

0

Решение

<?php
$wordsToKeep = array('car', 'circle', 'roof');
$text = 'I have a car with red one circle at the roof';

$words = explode(' ', $text);
$filteredWords = array_intersect($words, $wordsToKeep);

$filteredString = implode(' ', $filteredWords);

$filteredString будет равно car circle roof,

Увидеть http://php.net/manual/en/function.array-intersect.php

0

Другие решения

Я предлагаю str_word_count () функция:

<?php

$string = "Hello fri3nd, you're
looking          good today!
I have a car with red one circle at the roof.
An we can add some more _cool_ stuff :D on the roof";

// words to keep
$wordsKeep = array('car', 'circle', 'roof');

// takes care of most cases like spaces, punctuation, etc.
$wordsAll = str_word_count($string, 2, '\'"0123456789');

// remaining words
$wordsRemaining = array_intersect($wordsAll, $wordsKeep);

// maybe do an array_unique() here if you need

// glue the words back to a string
$result = implode(' ', $wordsRemaining);

var_dump($result);
0

Ради возможности повторного использования вы можете создать такую ​​функцию:

function selector($text,$selected){
$output=explode(' ',$text);

foreach($output as $word){
if (in_array($word,$selected)){
$out[]= trim($word);
}
}
return $out;
}

Вы получаете массив, как это:

echo implode(' ',selector($post,$connectors));
0
По вопросам рекламы [email protected]