Strings Php

$username="John Bond";
echo("$username in uppercase is ".strtoupper($username).".");
echo("$username in lowercase is ".strtolower($username).".");
echo("$username in first letter uppercase is ".ucwords($username).".");
?>