“string de capital php” 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

string de capital php

<?php
echo strtoupper("Hello WORLD!");
?>
Frail Flamingo

string php para manchas

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

Respostas semelhantes a “string de capital php”

Perguntas semelhantes a “string de capital php”

Mais respostas relacionadas para “string de capital php” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código