PHP Source:
<!DOCTYPE html>
<html>
<body>

<?php
$arr = array("Hello" => "Hi", "world" => "earth");
echo strtr("Hello world",$arr);
?>


</body>
</html>
Result:
Show PHP - © w3schools.com
Privacy Policy