String Operators

There is only really one string operator -- the concatenation operator (".").

$a = "Hello ";
$b = $a . "World!"; // now $b = "Hello World!"