Question:You have two strings, which you want to concatenate. $str1 = 'Have a'; $str2 = 'Nice Day'; The fastest way would be:
A $str1.Concat($str2); B $str1.$str2; C "$str1$str2"; D None
+ AnswerB
+ Report