String Concatenation Operator in php

Manipulating strings is such a core part of PHP applications that PHP has a separate string concatenation operator (.). The concatenation operator appends the righthand operand to the lefthand operand and returns the resulting string. Operands are first converted to strings, if necessary. For example: $n = 5;$s = ‘There were ‘ . $n . … Read more