Mega Code Archive
Strtr() function converts all characters contained in destination to their corresponding character matches in source
Its syntax: string strtr (string string, string source, string destination)
$source = array("" => "", "
" => "");
$string = "Today In PHP-Powered News
";
print strtr($string, $source);
?>