<?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;
You have javascript disabled. You will not be able to edit any code.