echo '$foo in global scope: ' . $GLOBALS["foo"] . "\n<br/>"; echo '$foo in current scope: ' . $foo . "\n"; }
$foo = "Example content"; test(); ?>