Ralf
0
Q:

strtoupper

<?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 ?
?>
3
<?php
echo strtoupper("Hello WORLD!");
?>
2
string strtoupper ( $string )
2

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

0

New to Communities?

Join the community