According to Google, concatenating echo statements with commas(,) is quicker than with periods(.).
Here's an example:
Original: echo 'This statement '.$has.' a variable in it.'
New: echo 'This statement ',$has,' a variable in it.'
The following statement
wont be changed:
$test = 'This statement '.$has['an'].' array in it.'