Converts a string to upper case.
strtoupper() returns a new string where the characters of the input string are converted to upper case.
<?php
print strtoupper("This Is An Example Line");
?>
THIS IS AN EXAMPLE LINE
strtoupper() is used to convert a string to all upper case.