how can combine two variables together in php

it will achieve on  via concatenating operator(.)
$st1 = 'Welcome';
$st2 = 'php';
$st3 = $st1.$st2;