- array_map: documentation ( source)
- implode: documentation ( source)
- explode: documentation ( source)
<?php
$text = array(
'Bag' => 'Cart',
'Cart' => 'Bag',
);
$strings = 'Bag Cart Cart Bag Miscellaneous';
$strings = implode(" ", array_map(fn($v) => $text[$v] ?? $v, explode(" ", $strings)));
echo $strings;