“strtoupper” Código de respuesta

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

cadena de php mayúsculas


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

Respuestas similares a “strtoupper”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código