Zend 200-530 - Zend PHP 5.3 Certification
Which of the following did not result in an output error in PHP 4 but does in PHP 5?
What is the output of the following code?
Would the following code catch a parse error?
try {
echo $label
} catch (Exception $e) {
echo $e->getMessage();
}
What function should be used to escape command line arguments that are passed to commands executed from PHP?
What method can be used to find a tag with the name "foo" via the DOM extension?
Given the following code, what is correct?
function f(stdClass &$x = NULL) { $x = 42;
}
$z = new stdClass;
f($z);
var_dump($z);
Which SPL class implements fixed-size storage?
What function is used to retrieve all available information about a symbolic link?
Which of the following statements about SOAP is NOT true?
Which of the following encryption standards provides symmetric key encryption? (Choose 2)