Flag of Ukraine
SymfonyCasts stands united with the people of Ukraine
Next Chapter

Challenge #1 of 2


Q: 

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 '!';

userVoice