Language Basics Php

function foo( ) {
            $GLOBALS['bar'] = "wombat";
    }
    $bar = "baz";
    foo( );
    print $bar;