convert php string to uppercase code example
Example 1: strtoupper php
string strtoupper ( $string )
Example 2: strtoupper
<?php
echo strtoupper("Hello WORLD!");
?>
string strtoupper ( $string )
<?php
echo strtoupper("Hello WORLD!");
?>