Ranjit
0
Q:

strtoupper php

$lowercase = "this is lower case";
$uppercase = strtoupper($lowercase);

echo $uppercase;
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
$str = strtolower($str);
1

New to Communities?

Join the community