Zend 200-530 Question Answer
What is the output of the following script?
1
2 function fibonacci ($x1, $x2)
3 {
4 return $x1 + $x2;
5 }
6
7 $x1 = 0;
8 $x2 = 1;
9
10 for ($i = 0; $i < 10; $i++) {
11 echo fibonacci($x1, $x2) . ',';
12 }
13 ?>
Zend 200-530 Summary
- Vendor: Zend
- Product: 200-530
- Update on: Jul 25, 2025
- Questions: 254