Zend 200-530 - Zend PHP 5.3 Certification
Which of the following statements about database connections are commonly true? (Choose 2)
Which of the following data types cannot be directly manipulated by the client?
How can the constant defined below be accessed from within PHP?
class myClass {
const FOO = 'BAR';
}
What does the __FILE__ constant contain?
What will be the result of the following operation?
array_combine(array("A","B","C"), array(1,2,3));
What is the difference between "print" and "echo"?
What is the output of the following code?
$a = 3;
switch ($a) {
case 1: echo 'one'; break;
case 2: echo 'two'; break;
default: echo 'four'; break;
case 3: echo 'three'; break;
}
What is the output of the following code?
Which of the following statements about exceptions are correct? (Choose 2)
What PHP function can be used to remove a local file?