Zend 200-530 Question Answer
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);
Zend 200-530 Summary
- Vendor: Zend
- Product: 200-530
- Update on: Jul 25, 2025
- Questions: 254