Discussion Forum : Php Operators And Expressions
Question - What will be the output of the following PHP code ?$x = "test";$y = "this";$z = "also";$x .= $y .= $z ;echo $x;echo $y;
Options:
A .  testthisalsothisalso
B .  error at line 4
C .  testthis
D .  testthisthisalso
Answer: Option A

Submit Your Solution Below and Earn Points !
Next Question
Submit Your Solution hear:

Your email address will not be published. Required fields are marked *