function test()
{
$a = 0;
global $a;
echo $a;
}
function test1()
$a = 5;
test();
test1();
输出结果是 5 0
为什么
相关分类