The PHP concatenation assignment operator (.=) is used to append a string.
Let's check the following example to understand how this function actually works.
<?php $str = "Welcome to "; $str .= "America"; echo $a; // Outputs: Welcome to America ?>0 0
Please Login to Post the answer