Start your All-Access Pass to unlock this challenge
Put on your thinking cap and look carefully: what does this print?
<?php
/*
* A Functions!
*/
function cat()
{
$dog = dog();
// $dog = strtoupper($dog);
return $dog;
}
/* Another function */
function dog()
{
return 'Molly';
}
$var = cat();
echo $var; echo ' the dog'; // echo '!';