Question:You have two strings, which you want to concatenate. $str1=’Have a’; $str2=’Nice Day’; The fastest way would be:
$str1=’Have a’;
$str2=’Nice Day’;
The fastest way would be:
A $str1.concat($str2); B $str1.str2; C “$str1str2”; D None
+ AnswerD
+ Report