“strtoupper” Réponses codées

strtoupper en php

<?php
/* There is a function in php wich convert all string to uppercase */

  echo strtoupper("Hello samy! how are u ?"); 

// output :   HELLO SAMY! HOW ARE U ?
?>
Mr. Samy

PHP String Mayusculas


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

Testy Teira

strtoupper php

string strtoupper ( $string )
Codeblock

strtoupper

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

Réponses similaires à “strtoupper”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code