Following question were asked in a technical php interview question paper
Which of the following will not combine strings $s1 and $s2 into a single string?
$s1 = 'a';
$s2 = 'b';
A. $s1 + $s2
B. "{$s1}{$s2}"
C. $s1.$s2
D. implode('', array($s1,$s2))
E. All of the above combine the strings
You can not concatenate 2 string using “+”. The answer will be “0″; so here the answer is A.

