Change All charachter of string in Uppercase and Lowercase in PHP  


<?php
$str = "India is the best";
$str = strtoupper($str);
echo $str;
echo '<br>';
$str1 = "INDIA IS THE BEST";
$str1 = strtolower($str1);
echo $str1;
?>

**********
//output

INDIA IS THE BEST // All string to Uppercase

india is the best All string to Lowercase


[ add comment ] ( 1 view )   |  permalink  |   ( 3 / 20 )

<<First <Back | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Next> Last>>