function test(){????$a = 0;????global $a;????echo $a;}function test1(){global $a;$a = 0;echo $a;}$a = 5;test();test1();輸出結果是 5 0為什么 查看完整描述