En este tutorial aprenderemos cómo pasar de minúsculas a mayúsculas en Php, incluyendo la letra ñ.
<?php
$var = "el niño juega";
$varMayus = mb_strtoupper($var);
//Ahora $varMayus vale: EL NIÑO JUEGA
?>
Otra opción sería usar la función str_replace() para sustituir todas las ñ de un String por Ñ.
Función str_replace()
<?php
//String de ejemplo
$frase = "El niño juega";
$fraseMayus = str_replace("Ñ", "ñ", $frase);
?>
Si te ha gustado no olvides compartir en redes sociales.
Espero que te haya servido. Cualquier duda deja un comentario. Un saludo
2 ideas sobre “Poner la ñ en mayúsculas en Php”
Howdy! This post could not be written any better!
Reading through this post reminds me of my good old
room mate! He always kept chatting about this.
I will forward this page to him. Pretty sure he will have a good read.
Many thanks for sharing!
Thanks for your comment. This kind of support is all I need to go on.