<?php $array = [ 'item1' => 'red', 'item2' => 'blue#foo#', 'item3' => 'green', 'item4' => 'white#foo2#', 'item5' => 'bla#foo3#ck', 'item6' => 'yellow#foo#', ]; $translations = [ '~#foo#~' => 'John', '~#foo2#~' => 'California', '~#foo3#~' => 'Cola', ]; var_export(preg_replace(array_keys($translations), $translations, $array));
You have javascript disabled. You will not be able to edit any code.