Zend 200-500 - Zend PHP 5 Certification
Which of the following are valid identifiers (Choose 3)
Which of the following is NOT possible using reflection?
What is the purpose of the 4th argument to the file_get_contents() function?
Which of the following commands will append data to an existing file?
What is the output of the following code:
str_replace(array("Apple","Orange"), array("Orange","Apple"), "Oranges are orange and Apples are green");
Which of the following statements about database connections are commonly true? (Choose 2)
Identify the security vulnerability in the following example:
1
2 mail('feedback@example.org',
3 'Feddback',
4 'Here is my feedback.',
5 "From: {$_COOKIE['email']}");
6 ?>
Which of the following may be used in conjunction with CASE inside a SWITCH statement?
When a transaction reports no affected rows, it means that: (Choose 2)
Given the following array:
$a = array(28, 15, 77, 43);
Which function will remove the value 28 from $a?