Language Basics Php

$a = 7; 
function test() { 
    global $a; 
    $a = 20; 

test(); 
echo "\$a = $a\n"; 
?>