“PHP Capital String” 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 Capital String

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

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 Capital String”

Questions similaires à “PHP Capital String”

Plus de réponses similaires à “PHP Capital String” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code