or download this
interpolation: $result = "$hello $world";
concatenation: $result = $hello.' '.$world;
...
sprintf: $result = sprintf("%s %s", $hello, $world);
join: $result = join(' ', $hello, $world);
super-join: $result = join('', $hello, ' ', $world);