How many times will the function counter() be executed in the following code?
seenagape
How many times will the function counter() be executed in the following code? function counter($start, &$stop) { if ($stop > $start) { return; } counter($start–, ++$stop); } $start = 5; $stop = 2; counter($start, $stop);