// converte strings de um texto no formato desejado
function change_str($text, $str)
{
$str2 = strtoupper($str);
//string maiúscula
$str = strtoupper($str);
$str2 = "".$str2."";
$text = str_replace($str, $str2, $text);
//string minúscula
$str = strtolower($str);
$str2 = "".$str2."";
$text = str_replace($str, $str2, $text);
//string com o primeiro caracter maiúsculo
$str = ucfirst($str);
$str2 = "".$str2."";
$text = str_replace($str, $str2, $text);
return $text;
}
?>