<?php
$old_string = "I am a teacher!";
$strtoupper = strtoupper($old_string);
$strtolower = strtolower($old_string);
$ucfirst = ucfirst($old_string);
$ucwords = ucwords($old_string);
echo $strtoupper;
echo "<br/>";
echo $strtolower;
echo "<br/>";
echo $ucfirst;
echo "<br/>";
echo $ucwords;
echo "<br/>";
?>
