php静态变量static时间:2023-03-09 21:27:05 静态变量 function test() { static $a = 0; echo $a; $a++; } test(); test(); test();