php strtoupper method code example
Example 1: upppercase php
$str = "upper";
//php string to uppercase
echo strtoupper($str); // => UPPER
Example 2: strtoupper php
string strtoupper ( $string )
$str = "upper";
//php string to uppercase
echo strtoupper($str); // => UPPER
string strtoupper ( $string )