<?php $array = array('w','z','u','o','ul.'); $titleOld = 'Testing w it\'s ul. here'; $words = explode(' ', $titleOld); $titleNew = rtrim(join('', array_map(fn($word) => $word . (in_array($word, $array) ? " " : ' '), $words))); echo $titleNew; // "Testing w it's ul. here"
You have javascript disabled. You will not be able to edit any code.