Functions Learning Mode

What is the output of the following code (Ignoring any PHP notices and error messages)?

    $v1 = 1;
    $v2 = 2;
    $v3 = 3;
    function myFunction(){
        $GLOBALS['v1'] *= 2;
        $v2 *= 2;
        global $v3; $v3 *= 2;
    }
    myFunction();
    echo "$v1$v2$v3";