Zend 200-500 - Zend PHP 5 Certification
You want to extract the pieces of a date string, which looks like this:
"2005-11-02". Which of the following pieces of code will properly assign $year,
$month and $day with their respective values?
How do you allow the caller to submit a variable number of arguments to a function?
Which one of the following technologies was not built into PHP before version 5?
You want to access the 3rd character of a string, contained in the variable $test. Which of the following possibilities work?(Choose 2)
What is the output of the following code?
1
2 $a = 'a'; $b = 'b';
3 echo isset($c) ? $a.$b.$c : ($c = 'c').'d';
4 ?>
What is "instanceof" an example of:
Which of the following superglobals does not contain data from the client?
What is the purpose of the open_basedir directive?
Which of the following techniques ensures that a value submitted in a form can only be yes or no?
In the function setcookie() what does the 3rd parameter specify?