What is the output of the following code?
echo "22" + "0.2", 23 . 1;
B
What is the output of the following code?
$first = "second";
$second = "first";
echo $$$first;
B
What is the output of the following code?
$first = "second";
$second = "first";
echo $$$first;
B
Which of the following code snippets DO NOT write the exact content of the file "source.txt" to
"target.txt"? (Choose 2)
B, C
What is the recommended method of copying data between two opened files?
C
Which of the following will set a 10 seconds read timeout for a stream?
D
What function allows resizing of PHP's file write buffer?
C
What does the __FILE__ constant contain?
B
What can prevent PHP from being able to open a file on the hard drive (Choose 2)?
A, B
What purpose do namespaces fulfill?
A