“php majuscule avec accent” Réponses codées

php majuscule

//string to all uppercase
$string = "String with Mixed use of Uppercase and Lowercase";
//php string to uppercase
$string = strtoupper($string);
// = "STRING WITH MIXED USE OF UPPERCASE AND LOWERCASE"
Vic20

php majuscule avec accent

<?php
function strtoupperWithAccents($string) {
   $string = strtoupper($string);
   $string = str_replace(
      array('é', 'è', 'ê', 'ë', 'à', 'â', 'î', 'ï', 'ô', 'ù', 'û'),
      array('É', 'È', 'Ê', 'Ë', 'À', 'Â', 'Î', 'Ï', 'Ô', 'Ù', 'Û'),
      $string
   );
   return $string;
}
Charming Cardinal

chaîne PHP en majuscules

<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
echo $str; // show: MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
Ivan The Terrible

Réponses similaires à “php majuscule avec accent”

Questions similaires à “php majuscule avec accent”

Plus de réponses similaires à “php majuscule avec accent” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code