"/>
<?php$a = "clue";$a .= "get";echo "$a";?>
<?php
$a = "clue";
$a .= "get";
echo "$a";
?>
get
true
false
clueget
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option D
Explanation :
.= is a concatenation-assignment. $a equals its current value concatenated with “get”.
Be The First To Comment