“Converta todo o texto em PHP em maiúsculas” Respostas de código

PHP em maiúsculas

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

Converta todo o texto em PHP em maiúsculas

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

Respostas semelhantes a “Converta todo o texto em PHP em maiúsculas”

Perguntas semelhantes a “Converta todo o texto em PHP em maiúsculas”

Mais respostas relacionadas para “Converta todo o texto em PHP em maiúsculas” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código