function test(){ $a = 0; global $a; echo $a;}function test1(){global $a;$a = 0;echo $a;}$a = 5;test();test1();输出结果是 5 0为什么 查看完整描述