PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php function makeCensored($text, $stopWords) { $array1 = explode(' ', $text); foreach ($array1 as $item) { if (in_array($item, $stopWords)) { $item = 0; } print_r($item); } $newString = implode(' ', $array1); return $newString; } $t = makeCensored('When you play the game of thrones, you win or you die', ['die', 'play']); //print_r($t);
Show:  
Copy Clear