function test ()
{
static $count = 0;
$countPP;
echo $count;
if ($count < 10) {
test();
}
$count--;
echo $count;
}
test ();
the output of this code is 123456789109876543210. I can figure out the previous output 1-109, but how does the latter output 8-0 output? in my opinion, the output should be 123456789109 and there is no loop to perform the action of $count--;echo $count;. I would like to ask where I am wrong, thank you, I am a novice, the boss is not to blame