function test()
{
static $count = 0;$count++;echo $count;if ($count < 10) { test();} $count--;echo $count;
}
test();
这段代码的输出为123456789109876543210,前面输出1-109我可以想得通,但是后面输出的8-0是怎么输出的,按照我的想法,应该是输出123456789109就结束了,并没有循环来执行$count--;echo $count;的动作啊?请问我哪里错了,谢谢,我新手,大佬莫怪
婷婷同学_