“Strtoupper” Kod odpowiedzi

Strtoupper w 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

String PHP 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

Odpowiedzi podobne do “Strtoupper”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu