<?php $str="a b c d e f g h i j "; $replacements = [ "a" => "6a", "b" => "6e", "c" => "6i", "d" => "6o", "e" => "6u", "f" => "5a", "g" => "5e", "h" => "5i", "i" => "5o", "j" => "5u", ]; echo strtr($str, $replacements);?>
You have javascript disabled. You will not be able to edit any code.