There is only one string operator in PHP. The concatenation operator ( . ) is used to put two string values together. To concatenate two string variables together, use the concatenation operator.
Single Quote (') and Double Quote (") Used to define string literals. Single quotes are used for simple strings, and double quotes allow for variable interpolation and escape sequences. Backslash () ...