0 votes
in PHP by

Which of the following will not combine strings $s1 and $s2 into a single string?

A) $s1 + $s2
B) "{$s1}{$s2}"
C) $s1.$s2
D) implode(' ', array($s1,$s2))
E) All of the above combine the strings

1 Answer

0 votes
by

$s1 + $s2

Related questions

0 votes
asked Mar 19, 2020 in PHP by DavidAnderson
0 votes
asked Mar 19, 2020 in PHP by DavidAnderson
...