Which PHP function sets a cookie and URL encodes its value when sending it to the browser?
See Below Explanation:
Answer : A
You want to access the 3rd character of a string, contained in the variable $test. Which of the following possibilites work? (Choose 2)
Answer : B, D
What is the output of the following code?
echo 0x33, ' monkeys sit on ', 011, ' trees.';
Answer : B
What will the following function call print?
printf('%010.6f', 22);
Answer : C
What will be the output value of the following code?
$array = array(1,2,3);
while (list(,$v) = each($array));
var_dump(current($array));
Answer : A
What is the method used to execute XPath queries in the SimpleXML extension?
Answer : B
How can a SimpleXML object be converted to a DOM object?
Answer : A