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);
Limited Time Offer
25%
Off
Gerald
4 days agoVilma
5 days agoJulio
8 days agoGerald
9 days ago