Zend 200-500 - Zend PHP 5 Certification
Which of the following statements is NOT correct?
Which of the following keywords is not new in PHP 5?
What will be the value of $b after running the following code?
$a = array('c', 'b', 'a');
$b = (array)$a;
Which of these protocols are NOT governed by the W3C in their latest versions? (Choose 2)
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 ?>