Change string in upper case with strtoupper function

You can convert a string into upper case (all letters in capital letters) with using strtoupper function. The example of strtoupper method is mentioned below: Code


<?php
  $greetingStr = "Good Morning";
  $result = strtoupper($greetingStr);
  echo $result;
?>