関数内でグローバル変数を扱うにはglobalを指定する1

何も出力されない。


source

<?php
$a = 10;
Function test()	{
	echo $a;
}
test()
?>