“Convierta todo el texto en PHP a mayúscula” Código de respuesta

PHP mayúscula

//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

Convierta todo el texto en PHP a mayúscula

<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
echo $str; // Prints MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
?>
Shadow

Respuestas similares a “Convierta todo el texto en PHP a mayúscula”

Preguntas similares a “Convierta todo el texto en PHP a mayúscula”

Más respuestas relacionadas con “Convierta todo el texto en PHP a mayúscula” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código