Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

PHP strtoupper — Make a string uppercase

<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
echo $str; // Prints MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
?>
Source by www.php.net #
 
PREVIOUS NEXT
Tagged: #PHP #strtoupper #Make #string #uppercase
ADD COMMENT
Topic
Name
2+6 =