In PHP there are two string operators.
The first PHP string operator is the concatenation operator (‘.’)
This operator returns the concatenation of its right and left arguments.
Example:
The second PHP string operator is the concatenating assignment operator (‘.=’)
This operator appends the argument on the right side to the argument on the left side.