What is the output of the following code?
$a = array('a', 'b'=>'c');
echo property_exists((object) $a, 'a')?'true':'false';
echo '-';
echo property_exists((object) $a, 'b')?'true':'false';
What is the output of the following code?
var_dump(boolval(new StdClass()));
Which of the following will set a 10 seconds read timeout for a stream?
What exception type will catch the error raised by the expression 2 / 0?