
Untitled
By: a guest on Feb 12th, 2012 | syntax:
None | size: 0.65 KB | hits: 35 | expires: Never
<?php
$a = "à";
$a = utf8_decode($a);
echo strtoupper($a);
function fullUpper($str){
// convert to entities
$subject = htmlentities($str,ENT_QUOTES);
$pattern = '/&([a-z])(uml|acute|circ';
$pattern.= '|tilde|ring|elig|grave|slash|horn|cedil|th);/e';
$replace = "'&'.strtoupper('\\1').'\\2'.';'";
$result = preg_replace($pattern, $replace, $subject);
// convert from entities back to characters
$htmltable = get_html_translation_table(HTML_ENTITIES);
foreach($htmltable as $key => $value) {
$result = ereg_replace(addslashes($value),$key,$result);
}
return(strtoupper($result));
}
echo fullUpper($a);
?>